-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: aaxelr5_wp844
-- ------------------------------------------------------
-- Server version 	5.5.5-10.3.34-MariaDB-log
-- Date: Fri, 15 Apr 2022 15:59:08 +0000

/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpob_links`
--

DROP TABLE IF EXISTS `wpob_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_links`
--

LOCK TABLES `wpob_links` WRITE;
/*!40000 ALTER TABLE `wpob_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_links` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_links` with 0 row(s)
--

--
-- Table structure for table `wpob_koko_analytics_site_stats`
--

DROP TABLE IF EXISTS `wpob_koko_analytics_site_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_koko_analytics_site_stats` (
  `date` date NOT NULL,
  `visitors` mediumint(8) unsigned NOT NULL,
  `pageviews` mediumint(8) unsigned NOT NULL,
  PRIMARY KEY (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=ascii;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_koko_analytics_site_stats`
--

LOCK TABLES `wpob_koko_analytics_site_stats` WRITE;
/*!40000 ALTER TABLE `wpob_koko_analytics_site_stats` DISABLE KEYS */;
INSERT INTO `wpob_koko_analytics_site_stats` VALUES ('2022-04-09',1,1),('2022-04-10',1,1),('2022-04-11',1,4),('2022-04-12',2,5);
/*!40000 ALTER TABLE `wpob_koko_analytics_site_stats` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_koko_analytics_site_stats` with 4 row(s)
--

--
-- Table structure for table `wpob_wc_order_stats`
--

DROP TABLE IF EXISTS `wpob_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_stats`
--

LOCK TABLES `wpob_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wpob_wc_order_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_order_stats` with 0 row(s)
--

--
-- Table structure for table `wpob_e_submissions_values`
--

DROP TABLE IF EXISTS `wpob_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_e_submissions_values`
--

LOCK TABLES `wpob_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wpob_e_submissions_values` DISABLE KEYS */;
INSERT INTO `wpob_e_submissions_values` VALUES (1,1,'name','Ariel'),(2,1,'email','axelrodhahn@gmail.com'),(3,1,'field_952e715','888888'),(4,1,'message','this is a test'),(5,2,'name','HenryToofe'),(6,2,'email','s_snelling@mail.com'),(7,2,'field_952e715','89031810647'),(8,2,'message','Join the society of successful people who make money here. \r\nhttps://profit-gold-strategy.life/?u=bdlkd0x&o=x7t8nng'),(9,3,'name','HenryToofe'),(10,3,'email','Gireesh05@gmail.com'),(11,3,'field_952e715','89034815455'),(12,3,'message','Learn how to make hundreds of backs each day. \r\nhttps://profit-gold-strategy.life/?u=bdlkd0x&o=x7t8nng');
/*!40000 ALTER TABLE `wpob_e_submissions_values` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_e_submissions_values` with 12 row(s)
--

--
-- Table structure for table `wpob_koko_analytics_referrer_urls`
--

DROP TABLE IF EXISTS `wpob_koko_analytics_referrer_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_koko_analytics_referrer_urls` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `url` (`url`)
) ENGINE=InnoDB DEFAULT CHARSET=ascii;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_koko_analytics_referrer_urls`
--

LOCK TABLES `wpob_koko_analytics_referrer_urls` WRITE;
/*!40000 ALTER TABLE `wpob_koko_analytics_referrer_urls` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_koko_analytics_referrer_urls` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_koko_analytics_referrer_urls` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpob_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wpob_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_downloadable_product_permissions` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_customer_lookup`
--

LOCK TABLES `wpob_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wpob_wc_customer_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_customer_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpob_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_payment_tokens`
--

LOCK TABLES `wpob_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_payment_tokens` with 0 row(s)
--

--
-- Table structure for table `wpob_usermeta`
--

DROP TABLE IF EXISTS `wpob_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_usermeta`
--

LOCK TABLES `wpob_usermeta` WRITE;
/*!40000 ALTER TABLE `wpob_usermeta` DISABLE KEYS */;
INSERT INTO `wpob_usermeta` VALUES (1,1,'nickname','Ariel Axelrod, LMHC'),(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','coffee'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpob_capabilities','a:2:{s:13:\"administrator\";b:1;s:16:\"tutor_instructor\";b:1;}'),(13,1,'wpob_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"240f7e2968c0132297d5e0d6762b09862469e14066347a9085fb49c0f5226f91\";a:4:{s:10:\"expiration\";i:1650211126;s:2:\"ip\";s:15:\"185.202.220.157\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15\";s:5:\"login\";i:1650038326;}}'),(17,1,'_woocommerce_tracks_anon_id','woo:9/NFkK5mbyiHDFo2DzWbraRN'),(18,1,'bglibDashboardOrder','1'),(64,1,'woocommerce_admin_wc_payments_overview_inbox_last_read','1643047704005'),(20,1,'wpob_dashboard_quick_press_last_post_id','526'),(21,1,'wc_last_active','1644883200'),(22,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"185.202.220.0\";}'),(23,1,'_is_tutor_instructor','1642437920'),(24,1,'_tutor_instructor_status','approved'),(25,1,'_tutor_instructor_approved','1642437920'),(26,1,'_tutor_instructor_course_id','14'),(27,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1642439989;}'),(54,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:24:\"bgbkup_autoupdate_notice\";s:9:\"timestamp\";i:1642440447;}'),(29,1,'billing_first_name',''),(30,1,'billing_last_name',''),(31,1,'billing_company',''),(32,1,'billing_address_1',''),(33,1,'billing_address_2',''),(34,1,'billing_city',''),(35,1,'billing_postcode',''),(36,1,'billing_country',''),(37,1,'billing_state',''),(38,1,'billing_phone',''),(39,1,'billing_email','axelrodhahn@gmail.com'),(40,1,'shipping_first_name',''),(41,1,'shipping_last_name',''),(42,1,'shipping_company',''),(43,1,'shipping_address_1',''),(44,1,'shipping_address_2',''),(45,1,'shipping_city',''),(46,1,'shipping_postcode',''),(47,1,'shipping_country',''),(48,1,'shipping_state',''),(49,1,'shipping_phone',''),(50,1,'_tutor_profile_job_title',''),(51,1,'_tutor_profile_bio',''),(52,1,'_tutor_profile_photo',''),(53,1,'last_update','1643047735'),(55,1,'_tutor_instructor_course_id','15'),(56,1,'wpob_user-settings','libraryContent=browse&ampampeditor=tinymce&ampampmfold=o&ampeditor=tinymce&amphidetb=1&editor=html'),(57,1,'wpob_user-settings-time','1650038325'),(58,1,'_is_tutor_student','1642440926'),(59,1,'_tutor_instructor_course_id','22'),(61,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(62,1,'_order_count','0'),(63,1,'jetpack_tracks_wpcom_id','216134610'),(65,1,'woocommerce_admin_activity_panel_inbox_last_read',''),(66,1,'woocommerce_admin_activity_panel_reviews_last_read',''),(67,1,'woocommerce_admin_categories_report_columns',''),(68,1,'woocommerce_admin_coupons_report_columns',''),(69,1,'woocommerce_admin_customers_report_columns',''),(70,1,'woocommerce_admin_orders_report_columns',''),(71,1,'woocommerce_admin_products_report_columns',''),(72,1,'woocommerce_admin_revenue_report_columns',''),(73,1,'woocommerce_admin_taxes_report_columns',''),(74,1,'woocommerce_admin_variations_report_columns',''),(75,1,'woocommerce_admin_dashboard_sections',''),(76,1,'woocommerce_admin_dashboard_chart_type',''),(77,1,'woocommerce_admin_dashboard_chart_interval',''),(78,1,'woocommerce_admin_dashboard_leaderboard_rows',''),(79,1,'woocommerce_admin_homepage_layout',''),(80,1,'woocommerce_admin_homepage_stats',''),(81,1,'woocommerce_admin_task_list_tracked_started_tasks',''),(82,1,'woocommerce_admin_help_panel_highlight_shown',''),(83,1,'woocommerce_admin_android_app_banner_dismissed',''),(84,1,'essential_adons_elementor_opt_in','1'),(85,1,'wpdeveloper_notices_seen','a:2:{s:24:\"wpdeveloper_notice_5_0_2\";a:1:{s:25:\"essential_adons_elementor\";a:1:{i:0;s:6:\"opt_in\";}}s:24:\"wpdeveloper_notice_5_0_7\";a:1:{s:25:\"essential_adons_elementor\";a:1:{i:0;s:6:\"review\";}}}'),(86,1,'dismissed_update_notice','1'),(111,1,'metaboxhidden_nav-menus','a:11:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:21:\"add-post-type-courses\";i:3;s:20:\"add-post-type-lesson\";i:4;s:24:\"add-post-type-tutor_quiz\";i:5;s:31:\"add-post-type-tutor_assignments\";i:6;s:12:\"add-post_tag\";i:7;s:15:\"add-product_cat\";i:8;s:15:\"add-product_tag\";i:9;s:19:\"add-course-category\";i:10;s:14:\"add-course-tag\";}'),(110,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\";}'),(113,1,'essential_adons_elementor_review','1'),(106,1,'_wcs_subscription_ids_cache','a:0:{}'),(107,1,'_wcs_subscription_ids_cache','a:0:{}'),(114,1,'nav_menu_recently_edited','19'),(115,1,'wpob_elementor_connect_common_data','a:6:{s:9:\"client_id\";s:32:\"qzaNgFsAUG0mfK86ySioJwZE9IUC8xk4\";s:11:\"auth_secret\";s:32:\"ecffxlcBVNHJ0oj8jskrFcYFSWhVJXdN\";s:12:\"access_token\";s:32:\"rW2xeTmDtEYshszI5ZS6lPF2fQqgwRap\";s:19:\"access_token_secret\";s:32:\"KsHFJK0Ks8wJqSW5wA6jLMJBKVHeCIgT\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";}}'),(116,1,'closedpostboxes_dashboard','a:0:{}'),(117,1,'metaboxhidden_dashboard','a:4:{i:0;s:22:\"boldgrid-notifications\";i:1;s:20:\"boldgrid_news_widget\";i:2;s:21:\"dashboard_quick_press\";i:3;s:17:\"dashboard_primary\";}');
/*!40000 ALTER TABLE `wpob_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_usermeta` with 92 row(s)
--

--
-- Table structure for table `wpob_nextend2_section_storage`
--

DROP TABLE IF EXISTS `wpob_nextend2_section_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_nextend2_section_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `application` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `section` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
  `referencekey` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `system` int(11) NOT NULL DEFAULT 0,
  `editable` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `system` (`system`),
  KEY `editable` (`editable`),
  KEY `application` (`application`,`section`(50),`referencekey`(50)),
  KEY `application_2` (`application`,`section`(50))
) ENGINE=MyISAM AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_nextend2_section_storage`
--

LOCK TABLES `wpob_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `wpob_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `wpob_nextend2_section_storage` VALUES (10000,'smartslider','settings','','{\"n2_ss3_version\":\"3.5.1.3\\/b:release-3.5.1.3\\/r:5023544a4fcfe8dfb1226d4b8c667713df879709\"}',0,1);
/*!40000 ALTER TABLE `wpob_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_nextend2_section_storage` with 1 row(s)
--

--
-- Table structure for table `wpob_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_product_meta_lookup`
--

LOCK TABLES `wpob_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wpob_wc_product_meta_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_product_meta_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_e_submissions`
--

DROP TABLE IF EXISTS `wpob_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hash_id` varchar(60) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL,
  `referer_title` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `element_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_e_submissions`
--

LOCK TABLES `wpob_e_submissions` WRITE;
/*!40000 ALTER TABLE `wpob_e_submissions` DISABLE KEYS */;
INSERT INTO `wpob_e_submissions` VALUES (1,'submission','7122f175-1824-4f26-bc48-f87ceaf21ddd',2,39,'https://the-collab.com/?page_id=39','Contact','6d0fe77','Contact Me',0,1,'71.248.161.244','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:98.0) Gecko/20100101 Firefox/98.0',1,1,'new',0,'{\"edit_post_id\":\"39\"}','2022-04-07 15:57:00','2022-04-07 15:57:00','2022-04-07 15:57:00','2022-04-07 15:57:00'),(2,'submission','b22cfa20-6e2b-4c99-b990-1ef9bd87d1fc',6,39,'','Contact','6d0fe77','Contact Me',0,0,'95.73.239.37','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"39\"}','2022-04-10 10:11:45','2022-04-10 10:11:45','2022-04-10 10:11:45','2022-04-10 10:11:45'),(3,'submission','361aceb9-1b3f-420b-bb96-fc9a6316e8af',10,39,'','Contact','6d0fe77','Contact Me',0,0,'95.73.239.37','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7',1,1,'new',0,'{\"edit_post_id\":\"39\"}','2022-04-15 08:31:06','2022-04-15 08:31:06','2022-04-15 08:31:06','2022-04-15 08:31:06');
/*!40000 ALTER TABLE `wpob_e_submissions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_e_submissions` with 3 row(s)
--

--
-- Table structure for table `wpob_comments`
--

DROP TABLE IF EXISTS `wpob_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_comments`
--

LOCK TABLES `wpob_comments` WRITE;
/*!40000 ALTER TABLE `wpob_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_comments` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_comments` with 0 row(s)
--

--
-- Table structure for table `wpob_commentmeta`
--

DROP TABLE IF EXISTS `wpob_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_commentmeta`
--

LOCK TABLES `wpob_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpob_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_commentmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_nextend2_smartslider3_sliders`
--

DROP TABLE IF EXISTS `wpob_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `time` datetime NOT NULL,
  `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `time` (`time`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_nextend2_smartslider3_sliders`
--

LOCK TABLES `wpob_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `wpob_nextend2_smartslider3_sliders` VALUES (1,NULL,'Tutorial Slider','simple','{\"aria-label\":\"Slider\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"background-color\":\"FFFFFF00\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"padding\":\"0|*|0|*|0|*|0\",\"perspective\":\"1000\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"mobileportrait\":\"1\",\"mobilelandscape\":\"1\",\"tabletportrait\":\"1\",\"tabletlandscape\":\"1\",\"desktopportrait\":\"1\",\"desktoplandscape\":\"1\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-desktop-portrait\":\"1440\",\"responsive-breakpoint-desktop-portrait-landscape\":\"1440\",\"responsive-breakpoint-tablet-landscape\":\"1300\",\"responsive-breakpoint-tablet-landscape-landscape\":\"1300\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-landscape\":\"900\",\"responsive-breakpoint-mobile-landscape-landscape\":\"1050\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-desktop-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-landscape-enabled\":\"0\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"0\",\"breakpoints-orientation\":\"portrait\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"slider-size-override\":\"0\",\"slider-size-override-mobile-portrait\":\"0\",\"mobile-portrait-width\":\"320\",\"mobile-portrait-height\":\"568\",\"slider-size-override-mobile-landscape\":\"0\",\"mobile-landscape-width\":\"568\",\"mobile-landscape-height\":\"320\",\"slider-size-override-tablet-portrait\":\"0\",\"tablet-portrait-width\":\"768\",\"tablet-portrait-height\":\"1024\",\"slider-size-override-tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"768\",\"slider-size-override-desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"900\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"widget-arrow-enabled\":\"0\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-previous\":\"thin-horizontal.svg\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"1\",\"widget-arrow-previous-hover-color\":\"ffffffff\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next\":\"thin-horizontal.svg\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-display-mobileportrait\":\"0\",\"widget-arrow-display-mobilelandscape\":\"0\",\"widget-arrow-display-tabletportrait\":\"1\",\"widget-arrow-display-tabletlandscape\":\"1\",\"widget-arrow-display-desktopportrait\":\"1\",\"widget-arrow-display-desktoplandscape\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-bullet-enabled\":\"1\",\"widgetbullet\":\"transition\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"5\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"5|*|5|*|5|*|5|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\",\\\"borderradius\\\":\\\"50\\\",\\\"extra\\\":\\\"margin: 4px;\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffcc\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\"}]}\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"60\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000080\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"margin: 5px;\\\"}]}\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-display-mobileportrait\":\"1\",\"widget-bullet-display-mobilelandscape\":\"1\",\"widget-bullet-display-tabletportrait\":\"1\",\"widget-bullet-display-tabletlandscape\":\"1\",\"widget-bullet-display-desktopportrait\":\"1\",\"widget-bullet-display-desktoplandscape\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bar-enabled\":\"0\",\"widgetbar\":\"horizontal\",\"widget-bar-position-mode\":\"simple\",\"widget-bar-position-area\":\"10\",\"widget-bar-position-stack\":\"1\",\"widget-bar-position-offset\":\"30\",\"widget-bar-position-horizontal\":\"left\",\"widget-bar-position-horizontal-position\":\"0\",\"widget-bar-position-horizontal-unit\":\"px\",\"widget-bar-position-vertical\":\"top\",\"widget-bar-position-vertical-position\":\"0\",\"widget-bar-position-vertical-unit\":\"px\",\"widget-bar-animate\":\"0\",\"widget-bar-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"5|*|20|*|5|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"40\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-bar-show-title\":\"1\",\"widget-bar-font-title\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-show-description\":\"1\",\"widget-bar-font-description\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":1,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-slide-count\":\"0\",\"widget-bar-width\":\"100%\",\"widget-bar-full-width\":\"0\",\"widget-bar-separator\":\" - \",\"widget-bar-align\":\"center\",\"widget-bar-display-hover\":\"0\",\"widget-bar-display-mobileportrait\":\"1\",\"widget-bar-display-mobilelandscape\":\"1\",\"widget-bar-display-tabletportrait\":\"1\",\"widget-bar-display-tabletlandscape\":\"1\",\"widget-bar-display-desktopportrait\":\"1\",\"widget-bar-display-desktoplandscape\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-thumbnail-enabled\":\"0\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-position-mode\":\"simple\",\"widget-thumbnail-position-area\":\"12\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-position-horizontal\":\"left\",\"widget-thumbnail-position-horizontal-position\":\"0\",\"widget-thumbnail-position-horizontal-unit\":\"px\",\"widget-thumbnail-position-vertical\":\"top\",\"widget-thumbnail-position-vertical-position\":\"0\",\"widget-thumbnail-position-vertical-unit\":\"px\",\"widget-thumbnail-action\":\"click\",\"widget-thumbnail-align-content\":\"start\",\"widget-thumbnail-style-bar\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"242424ff\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-style-slides\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|ffffff00\\\",\\\"borderradius\\\":\\\"0\\\",\\\"opacity\\\":\\\"40\\\",\\\"extra\\\":\\\"margin: 3px;\\ntransition: all 0.4s;\\nbackground-size: cover;\\\"},{\\\"border\\\":\\\"0|*|solid|*|ffffffcc\\\",\\\"opacity\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-title-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"3|*|10|*|3|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"bottom: 0;\\nleft: 0;\\\"}]}\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widget-thumbnail-arrow\":\"1\",\"widget-thumbnail-arrow-width\":\"26\",\"widget-thumbnail-arrow-offset\":\"0\",\"widget-thumbnail-arrow-prev-alt\":\"previous arrow\",\"widget-thumbnail-arrow-next-alt\":\"next arrow\",\"widget-thumbnail-arrow-image\":\"\",\"widget-thumbnail-group\":\"1\",\"widget-thumbnail-invert-group-direction\":\"0\",\"widget-thumbnail-orientation\":\"auto\",\"widget-thumbnail-size\":\"100%\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-display-mobileportrait\":\"1\",\"widget-thumbnail-display-mobilelandscape\":\"1\",\"widget-thumbnail-display-tabletportrait\":\"1\",\"widget-thumbnail-display-tabletlandscape\":\"1\",\"widget-thumbnail-display-desktopportrait\":\"1\",\"widget-thumbnail-display-desktoplandscape\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-shadow-enabled\":\"0\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-shadow-image\":\"\",\"widget-shadow-width\":\"100%\",\"widget-shadow-display-mobileportrait\":\"1\",\"widget-shadow-display-mobilelandscape\":\"1\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-tabletlandscape\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"widget-shadow-display-desktoplandscape\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widget-fullscreen-enabled\":\"0\",\"widgetfullscreen\":\"image\",\"widget-fullscreen-tonormal\":\"full1.svg\",\"widget-fullscreen-tonormal-image\":\"\",\"widget-fullscreen-tonormal-color\":\"ffffffcc\",\"widget-fullscreen-mirror\":\"1\",\"widget-fullscreen-tofull\":\"full1.svg\",\"widget-fullscreen-tofull-image\":\"\",\"widget-fullscreen-tofull-color\":\"ffffffcc\",\"widget-fullscreen-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-fullscreen-position-mode\":\"simple\",\"widget-fullscreen-position-area\":\"4\",\"widget-fullscreen-position-stack\":\"1\",\"widget-fullscreen-position-offset\":\"15\",\"widget-fullscreen-position-horizontal\":\"left\",\"widget-fullscreen-position-horizontal-position\":\"0\",\"widget-fullscreen-position-horizontal-unit\":\"px\",\"widget-fullscreen-position-vertical\":\"top\",\"widget-fullscreen-position-vertical-position\":\"0\",\"widget-fullscreen-position-vertical-unit\":\"px\",\"widget-fullscreen-responsive-desktop\":\"1\",\"widget-fullscreen-responsive-tablet\":\"0.7\",\"widget-fullscreen-responsive-mobile\":\"0.5\",\"widget-fullscreen-display-hover\":\"0\",\"widget-fullscreen-display-mobileportrait\":\"1\",\"widget-fullscreen-display-mobilelandscape\":\"1\",\"widget-fullscreen-display-tabletportrait\":\"1\",\"widget-fullscreen-display-tabletlandscape\":\"1\",\"widget-fullscreen-display-desktopportrait\":\"1\",\"widget-fullscreen-display-desktoplandscape\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-html-enabled\":\"0\",\"widgethtml\":\"html\",\"widget-html-position-mode\":\"simple\",\"widget-html-position-area\":\"2\",\"widget-html-position-stack\":\"1\",\"widget-html-position-offset\":\"0\",\"widget-html-position-horizontal\":\"left\",\"widget-html-position-horizontal-position\":\"0\",\"widget-html-position-horizontal-unit\":\"px\",\"widget-html-position-vertical\":\"top\",\"widget-html-position-vertical-position\":\"0\",\"widget-html-position-vertical-unit\":\"px\",\"widget-html-code\":\"\",\"widget-html-display-hover\":\"0\",\"widget-html-display-mobileportrait\":\"1\",\"widget-html-display-mobilelandscape\":\"1\",\"widget-html-display-tabletportrait\":\"1\",\"widget-html-display-tabletlandscape\":\"1\",\"widget-html-display-desktopportrait\":\"1\",\"widget-html-display-desktoplandscape\":\"1\",\"widget-html-exclude-slides\":\"\",\"animation\":\"fade\",\"animation-duration\":\"500\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"carousel\":\"1\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"shape-divider\":\"\",\"particle\":\"\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"autoplay\":\"0\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayAllowReStart\":\"0\",\"autoplayLoop\":\"1\",\"autoplayfinish\":\"1|*|loop|*|current\",\"loop-single-slide\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"widget-autoplay-enabled\":\"0\",\"widgetautoplay\":\"image\",\"widget-autoplay-play\":\"small-light.svg\",\"widget-autoplay-play-image\":\"\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-autoplay-mirror\":\"1\",\"widget-autoplay-pause\":\"small-light.svg\",\"widget-autoplay-pause-image\":\"\",\"widget-autoplay-pause-color\":\"ffffffcc\",\"widget-autoplay-responsive-desktop\":\"1\",\"widget-autoplay-responsive-tablet\":\"0.7\",\"widget-autoplay-responsive-mobile\":\"0.5\",\"widget-autoplay-position-mode\":\"simple\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-position-horizontal\":\"left\",\"widget-autoplay-position-horizontal-position\":\"0\",\"widget-autoplay-position-horizontal-unit\":\"px\",\"widget-autoplay-position-vertical\":\"top\",\"widget-autoplay-position-vertical-position\":\"0\",\"widget-autoplay-position-vertical-unit\":\"px\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-display-mobileportrait\":\"1\",\"widget-autoplay-display-mobilelandscape\":\"1\",\"widget-autoplay-display-tabletportrait\":\"1\",\"widget-autoplay-display-tabletlandscape\":\"1\",\"widget-autoplay-display-desktopportrait\":\"1\",\"widget-autoplay-display-desktoplandscape\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-indicator-enabled\":\"0\",\"widgetindicator\":\"pie\",\"widget-indicator-position-mode\":\"simple\",\"widget-indicator-position-area\":\"4\",\"widget-indicator-position-stack\":\"1\",\"widget-indicator-position-offset\":\"15\",\"widget-indicator-position-horizontal\":\"left\",\"widget-indicator-position-horizontal-position\":\"0\",\"widget-indicator-position-horizontal-unit\":\"px\",\"widget-indicator-position-vertical\":\"top\",\"widget-indicator-position-vertical-position\":\"0\",\"widget-indicator-position-vertical-unit\":\"px\",\"widget-indicator-size\":\"25\",\"widget-indicator-thickness\":\"30\",\"widget-indicator-track\":\"000000ab\",\"widget-indicator-bar\":\"ffffffff\",\"widget-indicator-style\":\"\",\"widget-indicator-display-hover\":\"0\",\"widget-indicator-display-mobileportrait\":\"1\",\"widget-indicator-display-mobilelandscape\":\"1\",\"widget-indicator-display-tabletportrait\":\"1\",\"widget-indicator-display-tabletlandscape\":\"1\",\"widget-indicator-display-desktopportrait\":\"1\",\"widget-indicator-display-desktoplandscape\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize-scale\":\"0\",\"optimize-quality\":\"70\",\"optimize-thumbnail-scale\":\"0\",\"optimize-thumbnail-quality\":\"70\",\"optimize-slide-width-normal\":\"1920\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-width-tablet\":\"800\",\"layer-image-width-mobile\":\"425\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"50\",\"slides-background-video-mobile\":\"1\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"backgroundMode\":\"fill\",\"slide-css\":\"\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"reverse-slides\":\"0\",\"maximumslidecount\":\"1000\",\"maintain-session\":\"0\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"slide-background-parallax\":\"0\",\"slide-background-parallax-strength\":\"50\",\"bg-parallax-tablet\":\"0\",\"bg-parallax-mobile\":\"0\",\"blockrightclick\":\"0\",\"controlsBlockCarouselInteraction\":\"1\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"classes\":\"\",\"custom-css-codes\":\"\",\"callbacks\":\"\",\"related-posts\":\"\"}','published','2020-02-25 13:53:41','https://smartslider3.com/wp-content/uploads/slider404/tutorialsliderthumbnail-1.png',0);
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_nextend2_smartslider3_sliders` with 1 row(s)
--

--
-- Table structure for table `wpob_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpob_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_tax_rate_classes`
--

LOCK TABLES `wpob_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wpob_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wpob_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wpob_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_tax_rate_classes` with 2 row(s)
--

--
-- Table structure for table `wpob_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_tax_lookup`
--

LOCK TABLES `wpob_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wpob_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_order_tax_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wpob_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonce_action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nonce_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2239 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_admin_note_actions`
--

LOCK TABLES `wpob_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpob_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpob_wc_admin_note_actions` VALUES (2204,1,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(2205,2,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(2206,3,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(2207,4,'browse_extensions','Browse extensions','https://the-collab.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(2208,5,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(2209,6,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/','actioned',1,'',NULL,NULL),(2210,7,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/','actioned',1,'',NULL,NULL),(2211,8,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),(2212,9,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'',NULL,NULL),(2213,10,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),(2214,11,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),(2215,12,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'',NULL,NULL),(2216,13,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'',NULL,NULL),(2217,14,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'',NULL,NULL),(2218,15,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'',NULL,NULL),(2219,16,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'',NULL,NULL),(2220,17,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'',NULL,NULL),(2221,18,'update-wc-subscriptions-3-0-15','View latest version','https://the-collab.com/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',1,'',NULL,NULL),(2222,19,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'',NULL,NULL),(1868,22,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(1869,23,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(2223,24,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(2224,25,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(2226,26,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2228,27,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2230,28,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2232,29,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2233,30,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',1,'',NULL,NULL),(2234,31,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,'',NULL,NULL),(2225,26,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(2227,27,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(2229,28,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(2231,29,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(67,32,'notify-refund-returns-page','Edit page','https://the-collab.com/wp-admin/post.php?post=9&action=edit','actioned',0,'',NULL,NULL),(68,33,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,'',NULL,NULL),(366,34,'learn_more','Learn More','https://woocommerce.com/checkout-blocks/','actioned',0,'',NULL,NULL),(400,35,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(401,36,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(402,36,'affirm-insight-first-product-and-payment','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(403,37,'update-store-details','Update store details','http://the-collab.com/wp-admin/admin.php?page=wc-admin&path=/setup-wizard','actioned',0,'',NULL,NULL),(437,38,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned',0,'',NULL,NULL),(438,39,'add-first-product','Add a product','https://the-collab.com/wp-admin/admin.php?page=wc-admin&task=products','actioned',0,'',NULL,NULL),(472,40,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-products/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(539,41,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned',1,'',NULL,NULL),(2028,56,'lead_gen_existing_customers_1','Yes, please','https://woocommerce.com/take-your-business-to-the-next-level/','actioned',0,'',NULL,NULL),(1000,48,'tracking-opt-in','Activate usage tracking','','actioned',1,'',NULL,NULL),(1001,49,'learn-more','Learn more','https://woocommerce.com/payments/?utm_medium=product','unactioned',0,'',NULL,NULL),(1002,49,'get-started','Get started','https://the-collab.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(1003,50,'jetpack-backup-woocommerce','Get backups','https://jetpack.com/upgrade/backup-woocommerce/?utm_source=inbox&#038;utm_medium=automattic_referred&#038;utm_campaign=jp_backup_to_woo','actioned',0,'',NULL,NULL),(1004,51,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(1005,51,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(1041,43,'update-db_done','Thanks!','https://the-collab.com/wp-admin/admin.php?page=stats&noheader&chart=flot-stats-data&wc-hide-notice=update','actioned',1,'woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'),(2235,52,'wc_simple_payments_m2_reader_launch_q1_2022','Learn more','https://woocommerce.com/in-person-payments/','actioned',0,'',NULL,NULL),(2236,53,'wcpay_applepay_q1_2022','Let your customers know about Apple Pay','https://developer.apple.com/apple-pay/marketing/','actioned',0,'',NULL,NULL),(2237,54,'stripe_applepay_q1_2022','Add Apple Pay','https://the-collab.com/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout&section=stripe','actioned',0,'',NULL,NULL),(2238,55,'square_applepay_q1_2022','Add Apple Pay','https://the-collab.com/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square','actioned',0,'',NULL,NULL);
/*!40000 ALTER TABLE `wpob_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_admin_note_actions` with 56 row(s)
--

--
-- Table structure for table `wpob_weforms_entries`
--

DROP TABLE IF EXISTS `wpob_weforms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_weforms_entries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` int(11) unsigned DEFAULT NULL,
  `user_device` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'publish',
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_weforms_entries`
--

LOCK TABLES `wpob_weforms_entries` WRITE;
/*!40000 ALTER TABLE `wpob_weforms_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_weforms_entries` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_weforms_entries` with 0 row(s)
--

--
-- Table structure for table `wpob_nextend2_smartslider3_generators`
--

DROP TABLE IF EXISTS `wpob_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_nextend2_smartslider3_generators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_nextend2_smartslider3_generators`
--

LOCK TABLES `wpob_nextend2_smartslider3_generators` WRITE;
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_generators` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_generators` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_nextend2_smartslider3_generators` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_rate_limits`
--

DROP TABLE IF EXISTS `wpob_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_rate_limits`
--

LOCK TABLES `wpob_wc_rate_limits` WRITE;
/*!40000 ALTER TABLE `wpob_wc_rate_limits` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_rate_limits` with 0 row(s)
--

--
-- Table structure for table `wpob_tutor_withdraws`
--

DROP TABLE IF EXISTS `wpob_tutor_withdraws`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_withdraws` (
  `withdraw_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `method_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`withdraw_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_withdraws`
--

LOCK TABLES `wpob_tutor_withdraws` WRITE;
/*!40000 ALTER TABLE `wpob_tutor_withdraws` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_tutor_withdraws` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_tutor_withdraws` with 0 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_questions`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_questions` (
  `question_id` int(11) NOT NULL AUTO_INCREMENT,
  `quiz_id` int(11) DEFAULT NULL,
  `question_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_mark` decimal(9,2) DEFAULT NULL,
  `question_settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_order` int(11) DEFAULT NULL,
  PRIMARY KEY (`question_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_questions`
--

LOCK TABLES `wpob_tutor_quiz_questions` WRITE;
/*!40000 ALTER TABLE `wpob_tutor_quiz_questions` DISABLE KEYS */;
INSERT INTO `wpob_tutor_quiz_questions` VALUES (1,19,'Is it a cat','','multiple_choice',1.00,'a:2:{s:13:\"question_type\";s:15:\"multiple_choice\";s:13:\"question_mark\";s:4:\"1.00\";}',1);
/*!40000 ALTER TABLE `wpob_tutor_quiz_questions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_tutor_quiz_questions` with 1 row(s)
--

--
-- Table structure for table `wpob_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpob_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_shipping_zones`
--

LOCK TABLES `wpob_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_shipping_zones` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=266 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_actions`
--

LOCK TABLES `wpob_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpob_actionscheduler_actions` VALUES (5,'action_scheduler/migration_hook','complete','2022-01-17 15:42:32','2022-01-17 15:42:32','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642434152;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642434152;}',1,1,'2022-01-17 15:42:39','2022-01-17 15:42:39',0,NULL),(6,'woocommerce_update_marketplace_suggestions','complete','2022-01-17 17:21:01','2022-01-17 17:21:01','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642440061;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642440061;}',0,1,'2022-01-17 17:21:32','2022-01-17 17:21:32',0,NULL),(7,'woocommerce_run_update_callback','complete','2022-01-18 01:58:54','2022-01-18 01:58:54','[\"wc_admin_update_271_update_task_list_options\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471134;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471134;}',2,1,'2022-01-18 01:58:55','2022-01-18 01:58:55',0,NULL),(8,'woocommerce_run_update_callback','complete','2022-01-18 01:58:55','2022-01-18 01:58:55','[\"wc_admin_update_271_db_version\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471135;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471135;}',2,1,'2022-01-18 01:58:55','2022-01-18 01:58:55',0,NULL),(9,'woocommerce_run_update_callback','complete','2022-01-18 01:58:56','2022-01-18 01:58:56','[\"wc_admin_update_280_order_status\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471136;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471136;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(10,'woocommerce_run_update_callback','complete','2022-01-18 01:58:57','2022-01-18 01:58:57','[\"wc_admin_update_280_db_version\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471137;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471137;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(11,'woocommerce_run_update_callback','complete','2022-01-18 01:58:58','2022-01-18 01:58:58','[\"wc_admin_update_290_update_apperance_task_option\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471138;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471138;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(12,'woocommerce_run_update_callback','complete','2022-01-18 01:58:59','2022-01-18 01:58:59','[\"wc_admin_update_290_delete_default_homepage_layout_option\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471139;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471139;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(13,'woocommerce_run_update_callback','complete','2022-01-18 01:59:00','2022-01-18 01:59:00','[\"wc_admin_update_290_db_version\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471140;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471140;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(14,'woocommerce_run_update_callback','complete','2022-01-18 01:59:01','2022-01-18 01:59:01','[\"wc_admin_update_300_update_is_read_from_last_read\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471141;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471141;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(15,'woocommerce_run_update_callback','complete','2022-01-18 01:59:02','2022-01-18 01:59:02','[\"wc_admin_update_300_db_version\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642471142;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642471142;}',2,1,'2022-01-18 04:38:09','2022-01-18 04:38:09',0,NULL),(16,'wc-admin_import_customers','complete','2022-01-23 17:23:42','2022-01-23 17:23:42','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642958622;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642958622;}',3,1,'2022-01-23 17:26:26','2022-01-23 17:26:26',0,NULL),(17,'wcs_add_start_date_metadata','complete','2022-01-23 18:37:39','2022-01-23 18:37:39','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642963059;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642963059;}',0,1,'2022-01-23 18:37:40','2022-01-23 18:37:40',0,NULL),(29,'woocommerce_run_update_callback','complete','2022-01-23 18:39:48','2022-01-23 18:39:48','{\"update_callback\":\"wc_update_600_db_version\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642963188;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642963188;}',2,1,'2022-01-23 18:39:49','2022-01-23 18:39:49',0,NULL),(28,'woocommerce_run_update_callback','complete','2022-01-23 18:39:47','2022-01-23 18:39:47','{\"update_callback\":\"wc_update_600_migrate_rate_limit_options\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642963187;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642963187;}',2,1,'2022-01-23 18:39:49','2022-01-23 18:39:49',0,NULL),(27,'woocommerce_update_db_to_current_version','complete','2022-01-23 18:39:37','2022-01-23 18:39:37','{\"version\":\"6.1.1\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642963177;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642963177;}',2,1,'2022-01-23 18:39:49','2022-01-23 18:39:49',0,NULL),(26,'woocommerce_run_update_callback','complete','2022-01-23 18:39:36','2022-01-23 18:39:36','{\"update_callback\":\"wc_update_600_db_version\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642963176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642963176;}',2,1,'2022-01-23 18:39:49','2022-01-23 18:39:49',0,NULL),(25,'woocommerce_run_update_callback','complete','2022-01-23 18:39:35','2022-01-23 18:39:35','{\"update_callback\":\"wc_update_600_migrate_rate_limit_options\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642963175;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642963175;}',2,1,'2022-01-23 18:39:49','2022-01-23 18:39:49',0,NULL),(24,'wcpay_refresh_account_cache','complete','2022-01-23 20:38:16','2022-01-23 20:38:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642970296;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642970296;}',4,1,'2022-01-23 20:40:15','2022-01-23 20:40:15',0,NULL),(32,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-24 02:56:10','2022-01-24 02:56:10','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642992970;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642992970;}',0,1,'2022-01-24 02:56:13','2022-01-24 02:56:13',0,NULL),(34,'wcpay_refresh_account_cache','complete','2022-01-24 11:58:57','2022-01-24 11:58:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643025537;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643025537;}',4,1,'2022-01-24 12:16:19','2022-01-24 12:16:19',0,NULL),(33,'wcpay_refresh_account_cache','complete','2022-01-24 09:31:20','2022-01-24 09:31:20','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643016680;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643016680;}',4,1,'2022-01-24 09:58:57','2022-01-24 09:58:57',0,NULL),(35,'wcpay_refresh_account_cache','complete','2022-01-24 14:16:19','2022-01-24 14:16:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643033779;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643033779;}',4,1,'2022-01-24 14:20:48','2022-01-24 14:20:48',0,NULL),(38,'action_scheduler/migration_hook','complete','2022-01-24 17:27:54','2022-01-24 17:27:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643045274;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643045274;}',1,1,'2022-01-24 17:28:01','2022-01-24 17:28:01',0,NULL),(37,'wcpay_refresh_account_cache','complete','2022-01-24 18:59:05','2022-01-24 18:59:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643050745;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643050745;}',4,1,'2022-01-24 19:00:56','2022-01-24 19:00:56',0,NULL),(39,'action_scheduler/migration_hook','complete','2022-01-24 17:29:14','2022-01-24 17:29:14','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643045354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643045354;}',1,1,'2022-01-24 17:29:26','2022-01-24 17:29:26',0,NULL),(40,'action_scheduler/migration_hook','complete','2022-01-24 17:31:15','2022-01-24 17:31:15','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643045475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643045475;}',1,1,'2022-01-24 17:31:26','2022-01-24 17:31:26',0,NULL),(41,'wc-admin_import_customers','complete','2022-01-24 17:33:49','2022-01-24 17:33:49','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643045629;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643045629;}',3,1,'2022-01-24 17:34:44','2022-01-24 17:34:44',0,NULL),(42,'wcpay_refresh_account_cache','complete','2022-01-24 21:00:56','2022-01-24 21:00:56','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643058056;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643058056;}',4,1,'2022-01-24 21:10:01','2022-01-24 21:10:01',0,NULL),(45,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-25 03:21:57','2022-01-25 03:21:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643080917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643080917;}',0,1,'2022-01-25 03:21:57','2022-01-25 03:21:57',0,NULL),(49,'wcpay_refresh_account_cache','complete','2022-01-25 23:40:52','2022-01-25 23:40:52','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643154052;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643154052;}',4,1,'2022-01-25 23:44:16','2022-01-25 23:44:16',0,NULL),(50,'wcpay_refresh_account_cache','complete','2022-01-26 01:44:16','2022-01-26 01:44:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643161456;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643161456;}',4,1,'2022-01-26 01:58:33','2022-01-26 01:58:33',0,NULL),(60,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-27 03:19:52','2022-01-27 03:19:52','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643253592;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643253592;}',0,1,'2022-01-27 03:19:55','2022-01-27 03:19:55',0,NULL),(139,'wcpay_refresh_account_cache','complete','2022-02-03 02:20:19','2022-02-03 02:20:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643854819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643854819;}',4,1,'2022-02-03 02:49:19','2022-02-03 02:49:19',0,NULL),(53,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-26 06:07:55','2022-01-26 06:07:55','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643177275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643177275;}',0,1,'2022-01-26 06:07:55','2022-01-26 06:07:55',0,NULL),(65,'wc-admin_import_customers','complete','2022-01-27 16:01:16','2022-01-27 16:01:16','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643299276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643299276;}',3,1,'2022-01-27 16:02:45','2022-01-27 16:02:45',0,NULL),(68,'wcpay_refresh_account_cache','complete','2022-01-28 01:53:34','2022-01-28 01:53:34','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643334814;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643334814;}',4,1,'2022-01-28 01:58:33','2022-01-28 01:58:33',0,NULL),(133,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-02 02:00:55','2022-02-02 02:00:55','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643767255;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643767255;}',0,1,'2022-02-02 02:00:58','2022-02-02 02:00:58',0,NULL),(71,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-28 06:28:04','2022-01-28 06:28:04','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643351284;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643351284;}',0,1,'2022-01-28 06:28:04','2022-01-28 06:28:04',0,NULL),(129,'wcpay_refresh_account_cache','complete','2022-02-01 19:26:21','2022-02-01 19:26:21','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643743581;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643743581;}',4,1,'2022-02-01 19:47:07','2022-02-01 19:47:07',0,NULL),(126,'wcpay_refresh_account_cache','complete','2022-02-01 09:59:54','2022-02-01 09:59:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643709594;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643709594;}',4,1,'2022-02-01 10:19:23','2022-02-01 10:19:23',0,NULL),(125,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-01 06:08:51','2022-02-01 06:08:51','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643695731;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643695731;}',0,1,'2022-02-01 06:08:54','2022-02-01 06:08:54',0,NULL),(122,'wc-admin_delete_user_customers','complete','2022-02-01 00:13:40','2022-02-01 00:13:40','[2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643674420;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643674420;}',3,1,'2022-02-01 00:15:23','2022-02-01 00:15:23',0,NULL),(98,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-30 05:03:29','2022-01-30 05:03:29','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643519009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643519009;}',0,1,'2022-01-30 05:03:29','2022-01-30 05:03:29',0,NULL),(108,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-31 05:08:54','2022-01-31 05:08:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643605734;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643605734;}',0,1,'2022-01-31 05:08:57','2022-01-31 05:08:57',0,NULL),(90,'wcpay_refresh_account_cache','complete','2022-01-29 08:02:42','2022-01-29 08:02:42','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643443362;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643443362;}',4,1,'2022-01-29 08:04:36','2022-01-29 08:04:36',0,NULL),(121,'wc-admin_import_customers','complete','2022-02-01 00:11:16','2022-02-01 00:11:16','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643674276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643674276;}',3,1,'2022-02-01 00:11:32','2022-02-01 00:11:32',0,NULL),(89,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-01-29 01:59:53','2022-01-29 01:59:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643421593;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643421593;}',0,1,'2022-01-29 01:59:53','2022-01-29 01:59:53',0,NULL),(86,'wcpay_refresh_account_cache','complete','2022-01-28 21:37:27','2022-01-28 21:37:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643405847;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643405847;}',4,1,'2022-01-28 21:38:46','2022-01-28 21:38:46',0,NULL),(140,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-03 02:49:18','2022-02-03 02:49:18','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643856558;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643856558;}',0,1,'2022-02-03 02:49:19','2022-02-03 02:49:19',0,NULL),(137,'wcpay_refresh_account_cache','complete','2022-02-02 20:29:25','2022-02-02 20:29:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643833765;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643833765;}',4,1,'2022-02-02 20:34:49','2022-02-02 20:34:49',0,NULL),(119,'wcpay_refresh_account_cache','complete','2022-01-31 22:08:39','2022-01-31 22:08:39','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643666919;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643666919;}',4,1,'2022-01-31 22:33:16','2022-01-31 22:33:16',0,NULL),(160,'wcpay_refresh_account_cache','complete','2022-02-05 03:58:26','2022-02-05 03:58:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644033506;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644033506;}',4,1,'2022-02-05 04:06:20','2022-02-05 04:06:20',0,NULL),(162,'wcpay_refresh_account_cache','complete','2022-02-05 06:06:20','2022-02-05 06:06:20','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644041180;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644041180;}',4,1,'2022-02-05 06:12:33','2022-02-05 06:12:33',0,NULL),(161,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-05 02:21:05','2022-02-05 02:21:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644027665;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644027665;}',0,1,'2022-02-05 02:21:05','2022-02-05 02:21:05',0,NULL),(153,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-04 02:41:24','2022-02-04 02:41:24','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643942484;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643942484;}',0,1,'2022-02-04 02:41:24','2022-02-04 02:41:24',0,NULL),(149,'wc-admin_import_customers','complete','2022-02-03 15:45:09','2022-02-03 15:45:09','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1643903109;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1643903109;}',3,1,'2022-02-03 15:45:12','2022-02-03 15:45:12',0,NULL),(165,'wcpay_refresh_account_cache','complete','2022-02-05 15:00:40','2022-02-05 15:00:40','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644073240;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644073240;}',4,1,'2022-02-05 15:30:38','2022-02-05 15:30:38',0,NULL),(166,'wcpay_refresh_account_cache','complete','2022-02-05 17:30:38','2022-02-05 17:30:38','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644082238;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644082238;}',4,1,'2022-02-05 17:36:46','2022-02-05 17:36:46',0,NULL),(171,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-06 03:36:42','2022-02-06 03:36:42','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644118602;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644118602;}',0,1,'2022-02-06 03:36:44','2022-02-06 03:36:44',0,NULL),(170,'wcpay_refresh_account_cache','complete','2022-02-06 05:31:07','2022-02-06 05:31:07','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644125467;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644125467;}',4,1,'2022-02-06 05:51:12','2022-02-06 05:51:12',0,NULL),(178,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-07 02:05:52','2022-02-07 02:05:52','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644199552;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644199552;}',0,1,'2022-02-07 02:05:54','2022-02-07 02:05:54',0,NULL),(189,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-08 06:12:21','2022-02-08 06:12:21','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644300741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644300741;}',0,1,'2022-02-08 06:12:24','2022-02-08 06:12:24',0,NULL),(184,'wcpay_refresh_account_cache','complete','2022-02-07 13:56:16','2022-02-07 13:56:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644242176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644242176;}',4,1,'2022-02-07 14:00:18','2022-02-07 14:00:18',0,NULL),(182,'wcpay_refresh_account_cache','complete','2022-02-07 08:18:41','2022-02-07 08:18:41','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644221921;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644221921;}',4,1,'2022-02-07 08:31:06','2022-02-07 08:31:06',0,NULL),(181,'wcpay_refresh_account_cache','complete','2022-02-07 05:54:49','2022-02-07 05:54:49','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644213289;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644213289;}',4,1,'2022-02-07 06:18:41','2022-02-07 06:18:41',0,NULL),(191,'wcpay_refresh_account_cache','complete','2022-02-08 15:03:17','2022-02-08 15:03:17','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644332597;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644332597;}',4,1,'2022-02-08 15:04:23','2022-02-08 15:04:23',0,NULL),(192,'wc-admin_import_customers','complete','2022-02-08 14:24:25','2022-02-08 14:24:25','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644330265;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644330265;}',3,1,'2022-02-08 14:24:38','2022-02-08 14:24:38',0,NULL),(195,'wcpay_refresh_account_cache','complete','2022-02-08 22:03:38','2022-02-08 22:03:38','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644357818;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644357818;}',4,1,'2022-02-08 22:32:42','2022-02-08 22:32:42',0,NULL),(194,'wcpay_refresh_account_cache','complete','2022-02-08 19:46:29','2022-02-08 19:46:29','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644349589;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644349589;}',4,1,'2022-02-08 20:03:38','2022-02-08 20:03:38',0,NULL),(198,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-09 02:55:33','2022-02-09 02:55:33','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644375333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644375333;}',0,1,'2022-02-09 02:55:36','2022-02-09 02:55:36',0,NULL),(197,'wcpay_refresh_account_cache','complete','2022-02-09 03:07:10','2022-02-09 03:07:10','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644376030;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644376030;}',4,1,'2022-02-09 03:35:00','2022-02-09 03:35:00',0,NULL),(201,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-09 06:30:53','2022-02-09 06:30:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644388253;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644388253;}',0,1,'2022-02-09 06:30:53','2022-02-09 06:30:53',0,NULL),(200,'wcpay_refresh_account_cache','complete','2022-02-09 08:18:50','2022-02-09 08:18:50','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644394730;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644394730;}',4,1,'2022-02-09 08:47:04','2022-02-09 08:47:04',0,NULL),(217,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-10 06:50:20','2022-02-10 06:50:20','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644475820;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644475820;}',0,1,'2022-02-10 06:50:22','2022-02-10 06:50:22',0,NULL),(216,'wcpay_refresh_account_cache','complete','2022-02-10 08:13:33','2022-02-10 08:13:33','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644480813;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644480813;}',4,1,'2022-02-10 08:16:13','2022-02-10 08:16:13',0,NULL),(214,'wcpay_refresh_account_cache','complete','2022-02-10 03:59:10','2022-02-10 03:59:10','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644465550;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644465550;}',4,1,'2022-02-10 04:08:00','2022-02-10 04:08:00',0,NULL),(212,'wcpay_refresh_account_cache','complete','2022-02-10 01:01:28','2022-02-10 01:01:28','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644454888;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644454888;}',4,1,'2022-02-10 01:59:10','2022-02-10 01:59:10',0,NULL),(215,'wcpay_refresh_account_cache','complete','2022-02-10 06:08:00','2022-02-10 06:08:00','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644473280;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644473280;}',4,1,'2022-02-10 06:13:33','2022-02-10 06:13:33',0,NULL),(229,'wcpay_refresh_account_cache','complete','2022-02-11 12:38:19','2022-02-11 12:38:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644583099;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644583099;}',4,1,'2022-02-11 12:46:13','2022-02-11 12:46:13',0,NULL),(226,'wcpay_refresh_account_cache','complete','2022-02-11 07:00:56','2022-02-11 07:00:56','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644562856;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644562856;}',4,1,'2022-02-11 07:20:51','2022-02-11 07:20:51',0,NULL),(227,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-11 06:55:07','2022-02-11 06:55:07','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644562507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644562507;}',0,1,'2022-02-11 06:55:07','2022-02-11 06:55:07',0,NULL),(224,'wcpay_refresh_account_cache','complete','2022-02-11 00:23:33','2022-02-11 00:23:33','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644539013;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644539013;}',4,1,'2022-02-11 00:49:24','2022-02-11 00:49:24',0,NULL),(238,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-12 06:19:35','2022-02-12 06:19:35','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644646775;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644646775;}',0,1,'2022-02-12 06:19:38','2022-02-12 06:19:38',0,NULL),(235,'wcpay_refresh_account_cache','complete','2022-02-12 03:58:18','2022-02-12 03:58:18','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644638298;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644638298;}',4,1,'2022-02-12 04:18:53','2022-02-12 04:18:53',0,NULL),(236,'wcpay_refresh_account_cache','complete','2022-02-12 06:18:53','2022-02-12 06:18:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644646733;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644646733;}',4,1,'2022-02-12 06:19:34','2022-02-12 06:19:34',0,NULL),(233,'wcpay_refresh_account_cache','complete','2022-02-11 22:06:32','2022-02-11 22:06:32','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644617192;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644617192;}',4,1,'2022-02-11 22:27:40','2022-02-11 22:27:40',0,NULL),(242,'wcpay_refresh_account_cache','complete','2022-02-13 01:36:56','2022-02-13 01:36:56','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644716216;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644716216;}',4,1,'2022-02-13 01:58:27','2022-02-13 01:58:27',0,NULL),(245,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-13 06:19:24','2022-02-13 06:19:24','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644733164;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644733164;}',0,1,'2022-02-13 06:19:32','2022-02-13 06:19:32',0,NULL),(253,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-14 06:20:28','2022-02-14 06:20:28','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644819628;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644819628;}',0,1,'2022-02-14 06:20:30','2022-02-14 06:20:30',0,NULL),(250,'wcpay_refresh_account_cache','complete','2022-02-14 00:45:30','2022-02-14 00:45:30','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644799530;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644799530;}',4,1,'2022-02-14 00:50:25','2022-02-14 00:50:25',0,NULL),(259,'wcpay_refresh_account_cache','complete','2022-02-15 08:18:05','2022-02-15 08:18:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644913085;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644913085;}',4,1,'2022-02-15 08:18:35','2022-02-15 08:18:35',0,NULL),(255,'wcpay_refresh_account_cache','complete','2022-02-14 16:42:14','2022-02-14 16:42:14','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644856934;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644856934;}',4,1,'2022-02-14 16:52:56','2022-02-14 16:52:56',0,NULL),(260,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2022-02-15 06:26:56','2022-02-15 06:26:56','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644906416;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644906416;}',0,1,'2022-02-15 06:26:58','2022-02-15 06:26:58',0,NULL),(263,'wcpay_refresh_account_cache','pending','2022-02-15 15:15:37','2022-02-15 15:15:37','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644938137;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644938137;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(262,'wcpay_refresh_account_cache','complete','2022-02-15 13:02:56','2022-02-15 13:02:56','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644930176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644930176;}',4,1,'2022-02-15 13:15:37','2022-02-15 13:15:37',0,NULL),(264,'wc-admin_import_customers','complete','2022-02-15 13:19:45','2022-02-15 13:19:45','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644931185;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644931185;}',3,1,'2022-02-15 13:20:33','2022-02-15 13:20:33',0,NULL),(265,'action_scheduler/migration_hook','pending','2022-02-15 13:58:08','2022-02-15 13:58:08','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644933488;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644933488;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wpob_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_actions` with 98 row(s)
--

--
-- Table structure for table `wpob_wc_category_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_category_lookup`
--

LOCK TABLES `wpob_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wpob_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wpob_wc_category_lookup` VALUES (15,15);
/*!40000 ALTER TABLE `wpob_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_category_lookup` with 1 row(s)
--

--
-- Table structure for table `wpob_wc_admin_notes`
--

DROP TABLE IF EXISTS `wpob_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  `layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info',
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_admin_notes`
--

LOCK TABLES `wpob_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpob_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpob_wc_admin_notes` VALUES (1,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(2,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(3,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(4,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(5,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(6,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(7,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(8,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(9,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(10,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(11,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(12,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(13,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(14,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.','{}','unactioned','woocommerce.com','2022-01-23 18:36:58',NULL,0,'plain','',0,'info',0),(15,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(16,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(17,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(18,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(19,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(20,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(21,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(22,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(23,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(24,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(25,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(52,'wc_simple_payments_m2_reader_launch_q1_2022','marketing','en_US','Take quick and easy in-person payments','WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are – or offer a local pickup option with payment taken in-person for orders placed online.','{}','unactioned','woocommerce.com','2022-02-04 16:07:56',NULL,0,'plain','',0,'info',0),(26,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(27,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(28,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(29,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(30,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(31,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info',0),(32,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2022-01-17 15:41:33',NULL,0,'plain','',0,'info',0),(33,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2022-01-17 15:41:33',NULL,0,'plain','',0,'info',0),(34,'surface_cart_checkout','info','en_US','Introducing the Cart and Checkout blocks!','Increase your store\'s revenue with the conversion optimized Cart &amp; Checkout WooCommerce blocks available in the WooCommerce Blocks extension.','{}','unactioned','woo-gutenberg-products-block','2022-01-18 04:38:09',NULL,0,'plain','',0,'info',0),(35,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2022-01-18 16:02:54',NULL,0,'plain','',0,'info',0),(36,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week.<br><br>Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2022-01-18 16:02:54',NULL,0,'plain','',0,'info',0),(37,'wc-admin-update-store-details','info','en_US','Edit your store details if you need to','Nice work completing your store profile! You can always go back and edit the details you just shared, as needed.','{}','unactioned','woocommerce-admin','2022-01-18 16:02:54',NULL,0,'plain','',0,'info',0),(38,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2022-01-19 17:19:33',NULL,0,'plain','',0,'info',0),(39,'wc-admin-add-first-product-note','email','en_US','Add your first product','{greetings}<br /><br />Nice one; you\'ve created a WooCommerce store! Now it\'s time to add your first product and get ready to start selling.<br /><br />There are three ways to add your products: you can <strong>create products manually, import them at once via CSV file</strong>, or <strong>migrate them from another service</strong>.<br /><br /><a href=\"https://docs.woocommerce.com/document/managing-products/?utm_source=help_panel&amp;utm_medium=product\">Explore our docs</a> for more information, or just get started!','{\"role\":\"administrator\"}','unactioned','woocommerce-admin','2022-01-19 17:19:33',NULL,0,'plain','http://the-collab.com/wp-content/plugins/woocommerce/packages/woocommerce-admin/images/admin_notes/dashboard-widget-setup.png',0,'info',0),(40,'wc-admin-adding-and-managing-products','info','en_US','Adding and Managing Products','Learn more about how to set up products in WooCommerce through our useful documentation about adding and managing products.','{}','unactioned','woocommerce-admin','2022-01-20 17:19:41',NULL,0,'plain','',0,'info',0),(41,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2022-01-22 15:44:49',NULL,0,'plain','',0,'info',0),(56,'lead_gen_existing_customers_1','marketing','en_US','Talk to a consultant','As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.','{}','unactioned','woocommerce.com','2022-02-11 20:40:44',NULL,0,'plain','',0,'info',0),(43,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2022-01-23 17:23:40',NULL,0,'plain','',0,'info',0),(48,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://the-collab.com/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking?utm_medium=product\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2022-01-24 16:59:12',NULL,0,'plain','',0,'info',0),(49,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooCommerce Payments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','actioned','woocommerce-admin','2022-01-24 16:59:12',NULL,0,'plain','',0,'info',0),(50,'wc-admin-marketing-jetpack-backup','marketing','en_US','Protect your WooCommerce Store with Jetpack Backup.','Store downtime means lost sales. One-click restores get you back online quickly if something goes wrong.','{}','unactioned','woocommerce-admin-notes','2022-01-24 16:59:12',NULL,0,'plain','',0,'info',0),(51,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2022-01-24 16:59:12',NULL,0,'plain','',0,'info',0),(53,'wcpay_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Diane does','See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.','{}','unactioned','woocommerce.com','2022-02-07 21:11:50',NULL,0,'plain','',0,'info',0),(54,'stripe_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Thomas does','Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings &gt; Payments &gt; Stripe.','{}','pending','woocommerce.com','2022-02-07 21:11:50',NULL,0,'plain','',0,'info',0),(55,'square_applepay_q1_2022','marketing','en_US','Increase conversions with a faster checkout experience','By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings &gt; Payments &gt; Square.','{}','pending','woocommerce.com','2022-02-07 21:11:50',NULL,0,'plain','',0,'info',0);
/*!40000 ALTER TABLE `wpob_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_admin_notes` with 51 row(s)
--

--
-- Table structure for table `wpob_nextend2_image_storage`
--

DROP TABLE IF EXISTS `wpob_nextend2_image_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_nextend2_image_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_nextend2_image_storage`
--

LOCK TABLES `wpob_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `wpob_nextend2_image_storage` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_nextend2_image_storage` with 0 row(s)
--

--
-- Table structure for table `wpob_term_relationships`
--

DROP TABLE IF EXISTS `wpob_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_term_relationships`
--

LOCK TABLES `wpob_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpob_term_relationships` DISABLE KEYS */;
INSERT INTO `wpob_term_relationships` VALUES (225,25,0),(35,18,0),(55,20,0),(290,19,0),(264,27,0),(425,1,0),(437,28,0),(103,23,0),(133,19,0),(480,27,0),(135,19,0),(134,19,0),(139,24,0),(140,19,0),(196,25,0),(488,26,0),(495,25,0);
/*!40000 ALTER TABLE `wpob_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_term_relationships` with 17 row(s)
--

--
-- Table structure for table `wpob_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpob_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_api_keys`
--

LOCK TABLES `wpob_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_api_keys` with 0 row(s)
--

--
-- Table structure for table `wpob_terms`
--

DROP TABLE IF EXISTS `wpob_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_terms`
--

LOCK TABLES `wpob_terms` WRITE;
/*!40000 ALTER TABLE `wpob_terms` DISABLE KEYS */;
INSERT INTO `wpob_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'subscription','subscription',0),(17,'Variable Subscription','variable-subscription',0),(18,'hello-elementor','hello-elementor',0),(19,'Page Navigation','page-navigation',0),(20,'twentytwentytwo','twentytwentytwo',0),(21,'header','header',0),(22,'footer','footer',0),(23,'zoologist','zoologist',0),(24,'blockbase','blockbase',0),(25,'page','page',0),(26,'section','section',0),(27,'widget','widget',0),(28,'single-page','single-page',0);
/*!40000 ALTER TABLE `wpob_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_terms` with 28 row(s)
--

--
-- Table structure for table `wpob_nextend2_smartslider3_sliders_xref`
--

DROP TABLE IF EXISTS `wpob_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_nextend2_smartslider3_sliders_xref` (
  `group_id` int(11) NOT NULL,
  `slider_id` int(11) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`group_id`,`slider_id`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_nextend2_smartslider3_sliders_xref`
--

LOCK TABLES `wpob_nextend2_smartslider3_sliders_xref` WRITE;
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_sliders_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_sliders_xref` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_nextend2_smartslider3_sliders_xref` with 0 row(s)
--

--
-- Table structure for table `wpob_weforms_entrymeta`
--

DROP TABLE IF EXISTS `wpob_weforms_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_weforms_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `weforms_entry_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `entry_id` (`weforms_entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_weforms_entrymeta`
--

LOCK TABLES `wpob_weforms_entrymeta` WRITE;
/*!40000 ALTER TABLE `wpob_weforms_entrymeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_weforms_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_weforms_entrymeta` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpob_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_tax_rates`
--

LOCK TABLES `wpob_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_tax_rates` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpob_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_tax_rate_locations`
--

LOCK TABLES `wpob_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_tax_rate_locations` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_download_log`
--

DROP TABLE IF EXISTS `wpob_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_download_log`
--

LOCK TABLES `wpob_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wpob_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_download_log` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wpob_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wpob_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_payment_tokenmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_term_taxonomy`
--

DROP TABLE IF EXISTS `wpob_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_term_taxonomy`
--

LOCK TABLES `wpob_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpob_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpob_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'product_type','',0,0),(17,17,'product_type','',0,0),(18,18,'wp_theme','',0,1),(19,19,'nav_menu','',0,5),(20,20,'wp_theme','',0,1),(21,21,'elementor_library_type','',0,0),(22,22,'elementor_library_type','',0,0),(23,23,'wp_theme','',0,1),(24,24,'wp_theme','',0,1),(25,25,'elementor_library_type','',0,1),(26,26,'elementor_library_type','',0,1),(27,27,'elementor_library_type','',0,1),(28,28,'elementor_library_type','',0,0);
/*!40000 ALTER TABLE `wpob_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_term_taxonomy` with 28 row(s)
--

--
-- Table structure for table `wpob_e_events`
--

DROP TABLE IF EXISTS `wpob_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_e_events`
--

LOCK TABLES `wpob_e_events` WRITE;
/*!40000 ALTER TABLE `wpob_e_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_e_events` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_e_events` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_product_lookup`
--

LOCK TABLES `wpob_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wpob_wc_order_product_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_order_product_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_wpforms_lite`
--

DROP TABLE IF EXISTS `wpob_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wpforms_lite`
--

LOCK TABLES `wpob_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wpob_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wpforms_lite` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wpforms_lite` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpob_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wpob_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_shipping_zone_locations` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpob_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_order_items`
--

LOCK TABLES `wpob_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_order_items` with 0 row(s)
--

--
-- Table structure for table `wpob_nextend2_smartslider3_slides`
--

DROP TABLE IF EXISTS `wpob_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_nextend2_smartslider3_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slider` int(11) NOT NULL,
  `publish_up` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `published` tinyint(1) NOT NULL,
  `first` int(11) NOT NULL,
  `slide` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `ordering` int(11) NOT NULL,
  `generator_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `published` (`published`),
  KEY `publish_up` (`publish_up`),
  KEY `publish_down` (`publish_down`),
  KEY `generator_id` (`generator_id`),
  KEY `ordering` (`ordering`),
  KEY `slider` (`slider`),
  KEY `thumbnail` (`thumbnail`(100))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_nextend2_smartslider3_slides`
--

LOCK TABLES `wpob_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `wpob_nextend2_smartslider3_slides` VALUES (1,'Slide Background',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-IbNOabpfT5aE\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"tabletportraitgutter\":20,\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-dtwtw9DVCwgQ\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-Fjvyu081qJeK\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"01. Slide Background\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Every slide includes a background, which can be a picture or solid color.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To change the background click on the label bar and in the layer window select the style tab.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Choose a source from the background top tab then upload an image or pick a background color.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-LnImbm1HgUAv\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/background.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/slidebackground.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide1.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',1,0),(2,'Build & Design',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-TPnUuKlAWVoC\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"tabletportraitgutter\":20,\"mobileportraitinneralign\":\"inherit\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobileportraitselfalign\":\"inherit\",\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-NmnNQvKK01kO\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitmaxwidth\":0,\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-R5Jkk06Nmzr4\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"02. Build & Design\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Build any layout with layers and customize your designs limitlessly.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To add a layer, click the green plus button in the left sidebar and select the type of layer.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Select any layer and you can edit its content and style properties in the layer window.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-iYi6ZKk8yeVp\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide2.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',2,0);
/*!40000 ALTER TABLE `wpob_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_nextend2_smartslider3_slides` with 2 row(s)
--

--
-- Table structure for table `wpob_woocommerce_log`
--

DROP TABLE IF EXISTS `wpob_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_log`
--

LOCK TABLES `wpob_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_log` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpob_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wpob_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_attribute_taxonomies` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_coupon_lookup`
--

LOCK TABLES `wpob_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wpob_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_order_coupon_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=1106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_claims`
--

LOCK TABLES `wpob_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_claims` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wpob_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_reserved_stock`
--

LOCK TABLES `wpob_wc_reserved_stock` WRITE;
/*!40000 ALTER TABLE `wpob_wc_reserved_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_reserved_stock` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_reserved_stock` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpob_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wpob_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_shipping_zone_methods` with 0 row(s)
--

--
-- Table structure for table `wpob_loginizer_logs`
--

DROP TABLE IF EXISTS `wpob_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT 0,
  `count` int(10) NOT NULL DEFAULT 0,
  `lockout` int(10) NOT NULL DEFAULT 0,
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_loginizer_logs`
--

LOCK TABLES `wpob_loginizer_logs` WRITE;
/*!40000 ALTER TABLE `wpob_loginizer_logs` DISABLE KEYS */;
INSERT INTO `wpob_loginizer_logs` VALUES ('axelrodhahn',1649980168,1,0,'92.204.219.111','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649984704,1,0,'91.234.194.177','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649967390,1,0,'69.30.229.66','https://mail.the-collab.com/wp-login.php'),('axelrodhahn',1649966661,1,0,'159.89.193.138','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649962148,1,0,'217.146.69.34','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649953333,1,0,'64.91.238.61','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649957781,1,0,'162.0.209.155','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649901470,1,0,'198.54.114.56','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649905654,1,0,'162.0.209.211','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649907649,1,0,'69.30.230.61','https://mail.the-collab.com/xmlrpc.php'),('axelrodhahn',1649999013,3,1,'91.234.195.40','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649914001,1,0,'208.109.23.237','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649918282,1,0,'91.210.235.165','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649926718,1,0,'168.119.8.237','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649931135,1,0,'173.201.181.36','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649935501,1,0,'147.139.37.149','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649939932,1,0,'23.235.219.107','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649944409,1,0,'148.72.248.66','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649948800,1,0,'64.31.14.78','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649897123,1,0,'82.165.88.51','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649888920,1,0,'68.65.121.177','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649893056,1,0,'72.167.65.82','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649975667,1,0,'192.145.239.215','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649971106,1,0,'47.52.89.98','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649989566,1,0,'185.221.182.105','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1649994307,1,0,'182.50.135.64','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1650003869,1,0,'178.89.187.94','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1650009183,1,0,'135.181.160.46','https://the-collab.com/xmlrpc.php'),('axelrodhahn',1650025114,1,0,'50.62.176.180','https://the-collab.com/xmlrpc.php');
/*!40000 ALTER TABLE `wpob_loginizer_logs` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_loginizer_logs` with 29 row(s)
--

--
-- Table structure for table `wpob_tutor_earnings`
--

DROP TABLE IF EXISTS `wpob_tutor_earnings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_earnings` (
  `earning_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `course_id` int(11) DEFAULT NULL,
  `order_id` int(11) DEFAULT NULL,
  `order_status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `course_price_total` decimal(16,2) DEFAULT NULL,
  `course_price_grand_total` decimal(16,2) DEFAULT NULL,
  `instructor_amount` decimal(16,2) DEFAULT NULL,
  `instructor_rate` decimal(16,2) DEFAULT NULL,
  `admin_amount` decimal(16,2) DEFAULT NULL,
  `admin_rate` decimal(16,2) DEFAULT NULL,
  `commission_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deduct_fees_amount` decimal(16,2) DEFAULT NULL,
  `deduct_fees_name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deduct_fees_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `process_by` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`earning_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_earnings`
--

LOCK TABLES `wpob_tutor_earnings` WRITE;
/*!40000 ALTER TABLE `wpob_tutor_earnings` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_tutor_earnings` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_tutor_earnings` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wpob_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_order_itemmeta`
--

LOCK TABLES `wpob_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_order_itemmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpob_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_sessions`
--

LOCK TABLES `wpob_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpob_woocommerce_sessions` VALUES (26,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:768:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2022-01-24T18:08:55+00:00\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1645103997);
/*!40000 ALTER TABLE `wpob_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_sessions` with 1 row(s)
--

--
-- Table structure for table `wpob_options`
--

DROP TABLE IF EXISTS `wpob_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=14634 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_options`
--

LOCK TABLES `wpob_options` WRITE;
/*!40000 ALTER TABLE `wpob_options` DISABLE KEYS */;
INSERT INTO `wpob_options` VALUES (1,'siteurl','https://the-collab.com','yes'),(2,'home','https://the-collab.com','yes'),(3,'blogname','The Collab','yes'),(4,'blogdescription','The Collab','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','axelrodhahn@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','','yes'),(20,'default_ping_status','','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','1','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','','yes'),(29,'rewrite_rules','','yes'),(13455,'_irb_h_bn_review','a:2:{s:5:\"users\";a:0:{}s:17:\"copy-delete-posts\";i:1649263584;}','yes'),(9162,'elementor_fonts_manager_font_types','a:0:{}','yes'),(9163,'elementor_fonts_manager_fonts','a:0:{}','yes'),(9164,'elementor_custom_icon_sets_config','a:0:{}','yes'),(9167,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(9175,'d38c6fa6f_eael_elements','a:0:{}','no'),(9176,'d38c6fa6f_eael_custom_js','','no'),(9177,'d38c6fa6f_eael_updated_at','1644954077','no'),(9178,'5472ab05e_eael_elements','a:0:{}','no'),(9179,'5472ab05e_eael_custom_js','','no'),(9180,'5472ab05e_eael_updated_at','1644953548','no'),(9181,'0a230cd2e_eael_elements','a:0:{}','no'),(9182,'0a230cd2e_eael_custom_js','','no'),(9183,'0a230cd2e_eael_updated_at','1644953548','no'),(9186,'elementor_library_category_children','a:0:{}','yes'),(9193,'c80dd3384_eael_elements','a:0:{}','no'),(9194,'c80dd3384_eael_custom_js','','no'),(9195,'c80dd3384_eael_updated_at','1644954077','no'),(9196,'8d87229a8_eael_elements','a:0:{}','no'),(9197,'8d87229a8_eael_custom_js','','no'),(9198,'8d87229a8_eael_updated_at','1644954077','no'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:33:\"koko-analytics/koko-analytics.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:31:\"elementor-pro/elementor-pro.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:23:\"loginizer/loginizer.php\";}','yes'),(13458,'cdp_latest_slow_performance','1','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','blockbase','yes'),(41,'stylesheet','blockbase','yes'),(42,'comment_registration','','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:3:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:39:\"copy-delete-posts/copy-delete-posts.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','29','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','','yes'),(91,'admin_email_lifespan','1657986057','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','49752','yes'),(100,'wpob_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:154:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:12:\"manage_tutor\";b:1;s:23:\"manage_tutor_instructor\";b:1;s:17:\"edit_tutor_course\";b:1;s:17:\"read_tutor_course\";b:1;s:19:\"delete_tutor_course\";b:1;s:20:\"delete_tutor_courses\";b:1;s:18:\"edit_tutor_courses\";b:1;s:25:\"edit_others_tutor_courses\";b:1;s:26:\"read_private_tutor_courses\";b:1;s:17:\"edit_tutor_lesson\";b:1;s:17:\"read_tutor_lesson\";b:1;s:19:\"delete_tutor_lesson\";b:1;s:20:\"delete_tutor_lessons\";b:1;s:18:\"edit_tutor_lessons\";b:1;s:25:\"edit_others_tutor_lessons\";b:1;s:26:\"read_private_tutor_lessons\";b:1;s:21:\"publish_tutor_lessons\";b:1;s:15:\"edit_tutor_quiz\";b:1;s:15:\"read_tutor_quiz\";b:1;s:17:\"delete_tutor_quiz\";b:1;s:20:\"delete_tutor_quizzes\";b:1;s:18:\"edit_tutor_quizzes\";b:1;s:25:\"edit_others_tutor_quizzes\";b:1;s:26:\"read_private_tutor_quizzes\";b:1;s:21:\"publish_tutor_quizzes\";b:1;s:19:\"edit_tutor_question\";b:1;s:19:\"read_tutor_question\";b:1;s:21:\"delete_tutor_question\";b:1;s:22:\"delete_tutor_questions\";b:1;s:20:\"edit_tutor_questions\";b:1;s:27:\"edit_others_tutor_questions\";b:1;s:23:\"publish_tutor_questions\";b:1;s:28:\"read_private_tutor_questions\";b:1;s:21:\"publish_tutor_courses\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:19:\"view_koko_analytics\";b:1;s:21:\"manage_koko_analytics\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:16:\"tutor_instructor\";a:2:{s:4:\"name\";s:16:\"Tutor Instructor\";s:12:\"capabilities\";a:35:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:23:\"manage_tutor_instructor\";b:1;s:17:\"edit_tutor_course\";b:1;s:17:\"read_tutor_course\";b:1;s:19:\"delete_tutor_course\";b:1;s:20:\"delete_tutor_courses\";b:1;s:18:\"edit_tutor_courses\";b:1;s:25:\"edit_others_tutor_courses\";b:1;s:26:\"read_private_tutor_courses\";b:1;s:17:\"edit_tutor_lesson\";b:1;s:17:\"read_tutor_lesson\";b:1;s:19:\"delete_tutor_lesson\";b:1;s:20:\"delete_tutor_lessons\";b:1;s:18:\"edit_tutor_lessons\";b:1;s:25:\"edit_others_tutor_lessons\";b:1;s:26:\"read_private_tutor_lessons\";b:1;s:21:\"publish_tutor_lessons\";b:1;s:15:\"edit_tutor_quiz\";b:1;s:15:\"read_tutor_quiz\";b:1;s:17:\"delete_tutor_quiz\";b:1;s:20:\"delete_tutor_quizzes\";b:1;s:18:\"edit_tutor_quizzes\";b:1;s:25:\"edit_others_tutor_quizzes\";b:1;s:26:\"read_private_tutor_quizzes\";b:1;s:21:\"publish_tutor_quizzes\";b:1;s:19:\"edit_tutor_question\";b:1;s:19:\"read_tutor_question\";b:1;s:21:\"delete_tutor_question\";b:1;s:22:\"delete_tutor_questions\";b:1;s:20:\"edit_tutor_questions\";b:1;s:27:\"edit_others_tutor_questions\";b:1;s:23:\"publish_tutor_questions\";b:1;s:28:\"read_private_tutor_questions\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'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;}','yes'),(103,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";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:13:\"array_version\";i:3;}','yes'),(104,'cron','a:20:{i:1650038366;a:1:{s:30:\"koko_analytics_aggregate_stats\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:39:\"koko_analytics_stats_aggregate_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1650040858;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1650040891;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1650040898;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1650047902;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650067200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650068330;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1650080457;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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;}}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;}}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:1650089940;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_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:1650100730;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650118476;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:1650123657;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650123691;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650123692;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650123693;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650123695;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:1650124119;a:1:{s:25:\"koko_analytics_prune_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650220599;a:1:{s:20:\"wcs_cleanup_big_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1650382857;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1642964236;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\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(121,'loginizer_version','1.7.0','yes'),(122,'loginizer_options','a:0:{}','yes'),(123,'loginizer_last_reset','1649971104','yes'),(124,'loginizer_whitelist','a:0:{}','yes'),(125,'loginizer_blacklist','a:0:{}','yes'),(126,'loginizer_2fa_whitelist','a:0:{}','yes'),(127,'loginizer_ins_time','1642434058','yes'),(128,'loginizer_promo_time','-1645110560','yes'),(136,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.3.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:3:{s:7:\"1.14.13\";i:1642434090;s:7:\"1.14.14\";i:1646071339;s:6:\"1.15.0\";i:1649255359;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1642434090;}}}','yes'),(169,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(175,'woocommerce_schema_version','430','yes'),(171,'current_theme_supports_woocommerce','yes','yes'),(172,'woocommerce_queue_flush_rewrite_rules','no','yes'),(292,'woocommerce_inbox_variant_assignment','9','yes'),(176,'woocommerce_store_address','','yes'),(177,'woocommerce_store_address_2','','yes'),(178,'woocommerce_store_city','','yes'),(179,'woocommerce_default_country','US:CA','yes'),(180,'woocommerce_store_postcode','','yes'),(181,'woocommerce_allowed_countries','all','yes'),(182,'woocommerce_all_except_countries','a:0:{}','yes'),(183,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(184,'woocommerce_ship_to_countries','','yes'),(185,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(186,'woocommerce_default_customer_address','base','yes'),(187,'woocommerce_calc_taxes','no','yes'),(188,'woocommerce_enable_coupons','no','yes'),(189,'woocommerce_calc_discounts_sequentially','no','no'),(144,'boldgrid_backup_id','11fcd6c5','no'),(145,'boldgrid_backup_settings','a:15:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:4;s:5:\"tod_m\";i:49;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:21:\"axelrodhahn@gmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:3:{s:4:\"days\";i:0;s:7:\"plugins\";a:1:{s:7:\"default\";s:1:\"0\";}s:6:\"themes\";a:1:{s:7:\"default\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/aaxelr5/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"3f21944f5ea180dec77bc73eca08431f706d0b04be8438ae5f8c3df6cc38f410\";}','no'),(151,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(152,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"UcT5GSw7jKzTBmQsbyy6D0LBb1f8IdcE\";}','yes'),(153,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(154,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(160,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(161,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(162,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(163,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(164,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(165,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(166,'action_scheduler_hybrid_store_demarkation','4','yes'),(167,'schema-ActionScheduler_StoreSchema','6.0.1642471133','yes'),(168,'schema-ActionScheduler_LoggerSchema','3.0.1642434091','yes'),(2531,'ea1d43322_eael_elements','a:0:{}','no'),(2532,'ea1d43322_eael_custom_js','','no'),(2533,'ea1d43322_eael_updated_at','1642963081','no'),(190,'woocommerce_currency','USD','yes'),(191,'woocommerce_currency_pos','left','yes'),(192,'woocommerce_price_thousand_sep',',','yes'),(193,'woocommerce_price_decimal_sep','.','yes'),(194,'woocommerce_price_num_decimals','2','yes'),(195,'woocommerce_shop_page_id','5','yes'),(196,'woocommerce_cart_redirect_after_add','no','yes'),(197,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(198,'woocommerce_placeholder_image','4','yes'),(199,'woocommerce_weight_unit','kg','yes'),(200,'woocommerce_dimension_unit','cm','yes'),(201,'woocommerce_enable_reviews','yes','yes'),(202,'woocommerce_review_rating_verification_label','yes','no'),(203,'woocommerce_review_rating_verification_required','no','no'),(204,'woocommerce_enable_review_rating','yes','yes'),(205,'woocommerce_review_rating_required','yes','no'),(206,'woocommerce_manage_stock','yes','yes'),(207,'woocommerce_hold_stock_minutes','10080','no'),(208,'woocommerce_notify_low_stock','yes','no'),(209,'woocommerce_notify_no_stock','yes','no'),(210,'woocommerce_stock_email_recipient','axelrodhahn@gmail.com','no'),(211,'woocommerce_notify_low_stock_amount','2','no'),(212,'woocommerce_notify_no_stock_amount','0','yes'),(213,'woocommerce_hide_out_of_stock_items','no','yes'),(214,'woocommerce_stock_format','','yes'),(215,'woocommerce_file_download_method','force','no'),(216,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(217,'woocommerce_downloads_require_login','no','no'),(218,'woocommerce_downloads_grant_access_after_payment','yes','no'),(219,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(220,'woocommerce_prices_include_tax','no','yes'),(221,'woocommerce_tax_based_on','shipping','yes'),(222,'woocommerce_shipping_tax_class','inherit','yes'),(223,'woocommerce_tax_round_at_subtotal','no','yes'),(224,'woocommerce_tax_classes','','yes'),(225,'woocommerce_tax_display_shop','excl','yes'),(226,'woocommerce_tax_display_cart','excl','yes'),(227,'woocommerce_price_display_suffix','','yes'),(228,'woocommerce_tax_total_display','itemized','no'),(229,'woocommerce_enable_shipping_calc','yes','no'),(230,'woocommerce_shipping_cost_requires_address','no','yes'),(231,'woocommerce_ship_to_destination','billing','no'),(232,'woocommerce_shipping_debug_mode','no','yes'),(233,'woocommerce_enable_guest_checkout','yes','no'),(234,'woocommerce_enable_checkout_login_reminder','no','no'),(235,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(236,'woocommerce_enable_myaccount_registration','no','no'),(237,'woocommerce_registration_generate_username','yes','no'),(238,'woocommerce_registration_generate_password','yes','no'),(239,'woocommerce_erasure_request_removes_order_data','no','no'),(240,'woocommerce_erasure_request_removes_download_data','no','no'),(241,'woocommerce_allow_bulk_remove_personal_data','no','no'),(242,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(243,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(244,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(245,'woocommerce_trash_pending_orders','','no'),(246,'woocommerce_trash_failed_orders','','no'),(247,'woocommerce_trash_cancelled_orders','','no'),(248,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(249,'woocommerce_email_from_name','The Collab','no'),(250,'woocommerce_email_from_address','axelrodhahn@gmail.com','no'),(251,'woocommerce_email_header_image','','no'),(252,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(253,'woocommerce_email_base_color','#96588a','no'),(254,'woocommerce_email_background_color','#f7f7f7','no'),(255,'woocommerce_email_body_background_color','#ffffff','no'),(256,'woocommerce_email_text_color','#3c3c3c','no'),(257,'woocommerce_merchant_email_notifications','no','no'),(258,'woocommerce_cart_page_id','6','no'),(259,'woocommerce_checkout_page_id','7','no'),(260,'woocommerce_myaccount_page_id','8','no'),(261,'woocommerce_terms_page_id','','no'),(262,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(263,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(264,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(265,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(266,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(267,'woocommerce_myaccount_orders_endpoint','orders','yes'),(268,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(269,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(270,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(271,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(272,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(273,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(274,'woocommerce_logout_endpoint','customer-logout','yes'),(275,'woocommerce_api_enabled','no','yes'),(276,'woocommerce_allow_tracking','no','no'),(277,'woocommerce_show_marketplace_suggestions','yes','no'),(278,'woocommerce_analytics_enabled','yes','yes'),(279,'woocommerce_single_image_width','600','yes'),(280,'woocommerce_thumbnail_image_width','300','yes'),(281,'woocommerce_checkout_highlight_required_fields','yes','yes'),(282,'woocommerce_demo_store','no','no'),(283,'product_cat_children','a:0:{}','yes'),(284,'default_product_cat','15','yes'),(313,'do_activate','0','yes'),(286,'woocommerce_refund_returns_page_id','9','yes'),(289,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:3:\"yes\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:21:\"axelrodhahn@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(290,'woocommerce_version','6.2.0','yes'),(291,'woocommerce_db_version','6.2.0','yes'),(295,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(296,'woocommerce_admin_install_timestamp','1642434092','yes'),(297,'woocommerce_task_list_hidden_lists','a:1:{i:0;s:5:\"setup\";}','yes'),(301,'wc_remote_inbox_notifications_wca_updated','','no'),(302,'wc_remote_inbox_notifications_specs','a:31:{s:27:\"stripe_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"stripe_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:380:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"stripe_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}s:27:\"square_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"square_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:393:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"square_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}}}}s:26:\"wcpay_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"wcpay_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:338:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"wcpay_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:259:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:45:\"https://woocommerce.com/woocommerce-shipping/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:31:\"https://woocommerce.com/mobile/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:736:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:5:\"rules\";a:0:{}}s:30:\"wcpay-promo-2021-6-incentive-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-1\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"get-woo-commerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"1\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"3\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"5\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"7\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"9\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"11\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:30:\"wcpay-promo-2021-6-incentive-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-2\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"get-woocommerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"2\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"4\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"6\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"8\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"10\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"12\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:440:\"Heads up! There\'s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:513:\"We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br/><br/>Start using our latest PayPal today to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:38:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"We\'re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:134:\"We\'d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"We\'d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:132:\"We\'re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}}','no'),(7449,'woocommerce_admin_version','3.1.0','yes'),(303,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','no'),(310,'_transient_jetpack_autoloader_plugin_paths','a:0:{}','yes'),(307,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:28:\"ecbiz238.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"7.3.33\";s:9:\"wpversion\";s:5:\"5.9.3\";}','yes'),(319,'wc_blocks_surface_cart_checkout_probability','16','yes'),(320,'wc_blocks_db_schema_version','260','yes'),(325,'_transient_product_query-transient-version','1644933266','yes'),(354,'finished_updating_comment_type','1','yes'),(326,'action_scheduler_lock_async-request-runner','1644933507','yes'),(327,'woocommerce_admin_notices','a:0:{}','yes'),(328,'woocommerce_meta_box_errors','a:0:{}','yes'),(9152,'elementor_pro_version','3.6.4','yes'),(9159,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1650081529;s:5:\"value\";s:391:\"{\"expires\":\"2023-02-15 18:57:44\",\"payment_id\":11506303,\"subscription_id\":11506303,\"customer_name\":\"Ariel Axelrod-Hahn\",\"customer_email\":\"axelrodhahn@gmail.com\",\"price_id\":2,\"license_limit\":3,\"site_count\":1,\"activations_left\":2,\"success\":true,\"license\":\"valid\",\"item_id\":6630547,\"item_name\":\"Elementor Pro - Plus\",\"subscriptions\":\"enable\",\"checksum\":\"checksum\",\"features\":[\"editor_comments\"]}\";}','no'),(9160,'_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1650038329;s:11:\"get_version\";i:1650038340;}','yes'),(9405,'elementor_experiment-theme_builder_v2','default','yes'),(9406,'elementor_experiment-form-submissions','default','yes'),(9407,'elementor_experiment-e_scroll_snap','default','yes'),(9349,'theme_mods_blockbase','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:19;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(5892,'jetpack_search_plan_info','a:8:{s:20:\"search_subscriptions\";a:0:{}s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;s:27:\"default_upgrade_bill_period\";s:6:\"yearly\";s:9:\"tier_slug\";N;s:20:\"tier_minimum_records\";N;s:20:\"tier_maximum_records\";N;}','yes'),(7455,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(14624,'_site_transient_timeout_theme_roots','1650039158','no'),(14625,'_site_transient_theme_roots','a:3:{s:11:\"bestblogger\";s:7:\"/themes\";s:9:\"blockbase\";s:7:\"/themes\";s:9:\"zoologist\";s:7:\"/themes\";}','no'),(14626,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1650038340;s:8:\"response\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":16:{s:14:\"stable_version\";s:5:\"3.6.5\";s:12:\"last_updated\";s:19:\"2022-02-02 15:14:57\";s:11:\"new_version\";s:5:\"3.6.5\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:222:\"https://plugin-downloads.elementor.com/v1/plugin/package_download/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTo4Njc1NjlhMzU4ZTUzNjFkNGU2NjkwNTg2ZTI5NjAxNTpodHRwc0AvL3RoZS1jb2xsYWIuY29tOjA=\";s:13:\"download_link\";s:222:\"https://plugin-downloads.elementor.com/v1/plugin/package_download/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTo4Njc1NjlhMzU4ZTUzNjFkNGU2NjkwNTg2ZTI5NjAxNTpodHRwc0AvL3RoZS1jb2xsYWIuY29tOjA=\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.6.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:227:\"https://plugin-downloads.elementor.com/v1/plugin/previous_download/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTozLjYuMDoxODcwOGI2ZTM1YjMyNjU2Y2Q1MWFmMDU4MDFjNGJjNzpodHRwc0AvL3RoZS1jb2xsYWIuY29t\";s:13:\"download_link\";s:227:\"https://plugin-downloads.elementor.com/v1/plugin/previous_download/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTozLjYuMDoxODcwOGI2ZTM1YjMyNjU2Y2Q1MWFmMDU4MDFjNGJjNzpodHRwc0AvL3RoZS1jb2xsYWIuY29t\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:33:\"koko-analytics/koko-analytics.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/koko-analytics\";s:4:\"slug\";s:14:\"koko-analytics\";s:6:\"plugin\";s:33:\"koko-analytics/koko-analytics.php\";s:11:\"new_version\";s:6:\"1.0.29\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/koko-analytics/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/koko-analytics.1.0.29.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/koko-analytics/assets/icon-256x256.png?rev=2187651\";s:2:\"1x\";s:59:\"https://ps.w.org/koko-analytics/assets/icon.svg?rev=2187651\";s:3:\"svg\";s:59:\"https://ps.w.org/koko-analytics/assets/icon.svg?rev=2187651\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/koko-analytics/assets/banner-1544x500.png?rev=2187642\";s:2:\"1x\";s:69:\"https://ps.w.org/koko-analytics/assets/banner-772x250.png?rev=2187643\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.7.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.1.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=2668035\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=2668037\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.15.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:15:\"tutor/tutor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:19:\"w.org/plugins/tutor\";s:4:\"slug\";s:5:\"tutor\";s:6:\"plugin\";s:15:\"tutor/tutor.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/tutor/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/tutor.2.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/tutor/assets/icon-256X256.gif?rev=2694448\";s:2:\"1x\";s:58:\"https://ps.w.org/tutor/assets/icon-256X256.gif?rev=2694448\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/tutor/assets/banner-1544x500.jpg?rev=2694448\";s:2:\"1x\";s:60:\"https://ps.w.org/tutor/assets/banner-772x250.jpg?rev=2694448\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.4.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:45:\"woocommerce-payments/woocommerce-payments.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-payments\";s:4:\"slug\";s:20:\"woocommerce-payments\";s:6:\"plugin\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:11:\"new_version\";s:5:\"4.0.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-payments/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-256x256.png?rev=2429229\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-128x128.png?rev=2429229\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-payments/assets/banner-1544x500.png?rev=2429229\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-payments/assets/banner-772x250.png?rev=2429229\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}}s:7:\"checked\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";s:5:\"3.6.5\";}}','no'),(13322,'boldgrid_backup_tasks','a:2:{i:0;a:7:{s:2:\"id\";s:17:\"1649226363-4ca2ac\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1649226363;s:10:\"started_at\";i:1649226363;s:12:\"completed_at\";i:1649226458;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:1;a:7:{s:2:\"id\";s:17:\"1650038348-56e349\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1650038348;s:10:\"started_at\";i:1650038348;s:12:\"completed_at\";N;s:6:\"status\";s:11:\"in_progress\";s:4:\"data\";a:0:{}}}','yes'),(14628,'_site_transient_timeout_browser_d0735a65322cdf77a99f10d4925003c6','1650643130','no'),(14629,'_site_transient_browser_d0735a65322cdf77a99f10d4925003c6','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:4:\"15.4\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(14630,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1650643130','no'),(14631,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(13957,'_site_transient_timeout_browser_e67b190ef90f2902e033f33eb1e8ac32','1650123276','no'),(13958,'_site_transient_browser_e67b190ef90f2902e033f33eb1e8ac32','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:4:\"15.3\";s:8:\"platform\";s:6:\"iPhone\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}','no'),(14359,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1650038340;s:7:\"checked\";a:3:{s:11:\"bestblogger\";s:3:\"2.5\";s:9:\"blockbase\";s:6:\"2.0.33\";s:9:\"zoologist\";s:6:\"1.0.29\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:11:\"bestblogger\";a:6:{s:5:\"theme\";s:11:\"bestblogger\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:41:\"https://wordpress.org/themes/bestblogger/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/bestblogger.2.5.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"blockbase\";a:6:{s:5:\"theme\";s:9:\"blockbase\";s:11:\"new_version\";s:6:\"2.0.33\";s:3:\"url\";s:39:\"https://wordpress.org/themes/blockbase/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/blockbase.2.0.33.zip\";s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.7\";}s:9:\"zoologist\";a:6:{s:5:\"theme\";s:9:\"zoologist\";s:11:\"new_version\";s:6:\"1.0.29\";s:3:\"url\";s:39:\"https://wordpress.org/themes/zoologist/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/zoologist.1.0.29.zip\";s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.7\";}}s:12:\"translations\";a:0:{}}','no'),(9339,'auto_update_themes','a:1:{i:0;s:9:\"zoologist\";}','no'),(9341,'theme_mods_zoologist','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:19;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1645111820;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";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\";}}}}','yes'),(5125,'WPLANG','','yes'),(5126,'new_admin_email','axelrodhahn@gmail.com','yes'),(13328,'_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-5.9.3.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-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1650038340;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(13978,'activate_plugins','a:4:{i:0;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:31:\"elementor-pro/elementor-pro.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:23:\"loginizer/loginizer.php\";}','yes'),(13979,'koko_analytics_version','1.0.29','yes'),(13980,'koko_analytics_use_custom_endpoint','1','yes'),(13987,'koko_analytics_realtime_pageview_count','a:1:{i:1649757444;i:1;}','no'),(13976,'_site_transient_boldgrid_plugins_filtered','a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.15.0\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(13974,'elementor_pro_remote_info_api_data_3.6.4','a:2:{s:7:\"timeout\";i:1650081540;s:5:\"value\";s:52438:\"{\"stable_version\":\"3.6.5\",\"last_updated\":\"2022-02-02 15:14:57\",\"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:47333:\\\"<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser <\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (#16815)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplefy the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget\\n<h4>3.4.2 - 2021-10-12<\\/h4><\\/li>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: &quot;Save &amp; Close &quot;button in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-16<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-16<\\/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 Pro v3.1<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.6.5\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.9.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTo4Njc1NjlhMzU4ZTUzNjFkNGU2NjkwNTg2ZTI5NjAxNTpodHRwc0AvL3RoZS1jb2xsYWIuY29tOjA=\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTo4Njc1NjlhMzU4ZTUzNjFkNGU2NjkwNTg2ZTI5NjAxNTpodHRwc0AvL3RoZS1jb2xsYWIuY29tOjA=\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.6.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.9.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTozLjYuMDoxODcwOGI2ZTM1YjMyNjU2Y2Q1MWFmMDU4MDFjNGJjNzpodHRwc0AvL3RoZS1jb2xsYWIuY29t\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY1MDEyNDc0MDplcC0yd0lOUmZ5emFlV1FXZ2RuamZhZDE2NDQ5NTI4NTZFWVpwRG9JVlJCZUw6MTozLjYuMDoxODcwOGI2ZTM1YjMyNjU2Y2Q1MWFmMDU4MDFjNGJjNzpodHRwc0AvL3RoZS1jb2xsYWIuY29t\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]}}\";}','no'),(14621,'_transient_timeout_global_styles_svg_filters_blockbase','1650037418','no'),(14622,'_transient_global_styles_svg_filters_blockbase','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(14619,'_transient_timeout_global_styles_blockbase','1650037417','no'),(14620,'_transient_global_styles_blockbase','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--primary: #007cba;--wp--preset--color--secondary: #006ba1;--wp--preset--color--foreground: #333333;--wp--preset--color--background: #ffffff;--wp--preset--color--tertiary: #F0F0F0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 1rem;--wp--preset--font-size--medium: 1.5rem;--wp--preset--font-size--large: 1.75rem;--wp--preset--font-size--x-large: 2rem;--wp--preset--font-family--body-font: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;--wp--preset--font-family--heading-font: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;--wp--custom--alignment--aligned-max-width: 50%;--wp--custom--button--border--color: var(--wp--custom--color--primary);--wp--custom--button--border--radius: 4px;--wp--custom--button--border--style: solid;--wp--custom--button--border--width: 2px;--wp--custom--button--color--background: var(--wp--custom--color--primary);--wp--custom--button--color--text: var(--wp--custom--color--background);--wp--custom--button--hover--color--text: var(--wp--custom--color--background);--wp--custom--button--hover--color--background: var(--wp--custom--color--secondary);--wp--custom--button--hover--border--color: var(--wp--custom--color--secondary);--wp--custom--button--spacing--padding--top: 0.667em;--wp--custom--button--spacing--padding--bottom: 0.667em;--wp--custom--button--spacing--padding--left: 1.333em;--wp--custom--button--spacing--padding--right: 1.333em;--wp--custom--button--typography--font-size: var(--wp--custom--font-sizes--normal);--wp--custom--button--typography--font-weight: normal;--wp--custom--button--typography--line-height: 2;--wp--custom--color--foreground: var(--wp--preset--color--foreground);--wp--custom--color--background: var(--wp--preset--color--background);--wp--custom--color--primary: var(--wp--preset--color--primary);--wp--custom--color--secondary: var(--wp--preset--color--secondary);--wp--custom--color--tertiary: var(--wp--preset--color--tertiary);--wp--custom--color-palettes--0--label: Featured;--wp--custom--color-palettes--0--slug: palette-1;--wp--custom--color-palettes--0--colors--primary: #C8133E;--wp--custom--color-palettes--0--colors--secondary: #4E2F4B;--wp--custom--color-palettes--0--colors--foreground: #1D1E1E;--wp--custom--color-palettes--0--colors--background: #FFFFFF;--wp--custom--color-palettes--0--colors--tertiary: #F9F9F9;--wp--custom--color-palettes--1--label: Featured;--wp--custom--color-palettes--1--slug: palette-2;--wp--custom--color-palettes--1--colors--primary: #35845D;--wp--custom--color-palettes--1--colors--secondary: #233252;--wp--custom--color-palettes--1--colors--foreground: #242527;--wp--custom--color-palettes--1--colors--background: #EEF4F7;--wp--custom--color-palettes--1--colors--tertiary: #F9F9F9;--wp--custom--color-palettes--2--label: Featured;--wp--custom--color-palettes--2--slug: palette-3;--wp--custom--color-palettes--2--colors--primary: #9FD3E8;--wp--custom--color-palettes--2--colors--secondary: #FBE6AA;--wp--custom--color-palettes--2--colors--foreground: #FFFFFF;--wp--custom--color-palettes--2--colors--background: #1F2527;--wp--custom--color-palettes--2--colors--tertiary: #364043;--wp--custom--font-sizes--x-small: 0.875rem;--wp--custom--font-sizes--normal: 1.125rem;--wp--custom--font-sizes--huge: 3rem;--wp--custom--form--padding: calc( 0.5 * var(--wp--custom--gap--horizontal) );--wp--custom--form--border--color: #EFEFEF;--wp--custom--form--border--radius: 0;--wp--custom--form--border--style: solid;--wp--custom--form--border--width: 2px;--wp--custom--form--checkbox--checked--content: \"\\2715\";--wp--custom--form--checkbox--checked--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--form--checkbox--checked--position--left: 3px;--wp--custom--form--checkbox--checked--position--top: 3px;--wp--custom--form--checkbox--checked--sizing--height: 12px;--wp--custom--form--checkbox--checked--sizing--width: 12px;--wp--custom--form--checkbox--unchecked--content: \"\";--wp--custom--form--checkbox--unchecked--position--left: 0;--wp--custom--form--checkbox--unchecked--position--top: 0.2em;--wp--custom--form--checkbox--unchecked--sizing--height: 16px;--wp--custom--form--checkbox--unchecked--sizing--width: 16px;--wp--custom--form--color--background: transparent;--wp--custom--form--color--box-shadow: none;--wp--custom--form--color--text: inherit;--wp--custom--form--label--spacing--margin--bottom: var(--wp--custom--gap--baseline);--wp--custom--form--label--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--form--label--typography--font-weight: normal;--wp--custom--form--label--typography--letter-spacing: normal;--wp--custom--form--label--typography--text-transform: none;--wp--custom--form--typography--font-size: var(--wp--custom--font-sizes--normal);--wp--custom--gallery--caption--font-size: var(--wp--preset--font-size--small);--wp--custom--body--typography--line-height: 1.6;--wp--custom--heading--typography--font-weight: 400;--wp--custom--heading--typography--line-height: 1.125;--wp--custom--latest-posts--meta--color--text: var(--wp--custom--color--primary);--wp--custom--layout--content-size: 620px;--wp--custom--gap--baseline: 15px;--wp--custom--gap--horizontal: min(30px, 5vw);--wp--custom--gap--vertical: min(30px, 5vw);--wp--custom--navigation--submenu--border--color: var(--wp--custom--color--primary);--wp--custom--navigation--submenu--border--radius: var(--wp--custom--form--border--radius);--wp--custom--navigation--submenu--border--style: var(--wp--custom--form--border--style);--wp--custom--navigation--submenu--border--width: var(--wp--custom--form--border--width);--wp--custom--navigation--submenu--color--background: var(--wp--custom--color--background);--wp--custom--navigation--submenu--color--text: var(--wp--custom--color--foreground);--wp--custom--paragraph--dropcap--margin: .1em .1em 0 0;--wp--custom--paragraph--dropcap--typography--font-size: 110px;--wp--custom--paragraph--dropcap--typography--font-weight: 400;--wp--custom--post-author--typography--font-weight: normal;--wp--custom--post-comment--typography--font-size: var(--wp--custom--font-sizes--normal);--wp--custom--post-comment--typography--line-height: var(--wp--custom--body--typography--line-height);--wp--custom--pullquote--citation--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--pullquote--citation--typography--font-family: inherit;--wp--custom--pullquote--citation--typography--font-style: italic;--wp--custom--pullquote--citation--spacing--margin--top: var(--wp--custom--gap--vertical);--wp--custom--pullquote--typography--text-align: left;--wp--custom--quote--citation--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--quote--citation--typography--font-style: italic;--wp--custom--quote--citation--typography--font-weight: 400;--wp--custom--quote--typography--text-align: left;--wp--custom--separator--opacity: 1;--wp--custom--separator--width: 150px;--wp--custom--table--figcaption--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--video--caption--text-align: center;--wp--custom--video--caption--margin: var(--wp--custom--gap--vertical) auto;}body { margin: 0; }body{background-color: var(--wp--custom--color--background);color: var(--wp--custom--color--foreground);font-family: var(--wp--preset--font-family--body-font);font-size: var(--wp--custom--font-sizes--normal);line-height: var(--wp--custom--body--typography--line-height);--wp--style--block-gap: calc(2 * var(--wp--custom--gap--baseline));}.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }.wp-site-blocks > * { margin-top: 0; margin-bottom: 0; }.wp-site-blocks > * + * { margin-top: var( --wp--style--block-gap ); }h1{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--custom--font-sizes--huge);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h2{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--preset--font-size--x-large);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h3{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--preset--font-size--large);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h4{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--preset--font-size--medium);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h5{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--custom--font-sizes--normal);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h6{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--preset--font-size--small);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}a{color: var(--wp--custom--color--primary);}.wp-block-button__link{background-color: var(--wp--custom--button--color--background);border-radius: var(--wp--custom--button--border--radius);color: var(--wp--custom--button--color--text);font-family: var(--wp--preset--font-family--body-font);font-size: var(--wp--custom--button--typography--font-size);font-weight: var(--wp--custom--button--typography--font-weight);line-height: var(--wp--custom--button--typography--line-height);}.wp-block-code > code{border-radius: 0px;border-color: #CCCCCC;border-width: 2px;border-style: solid;font-family: monospace;padding-top: var(--wp--custom--gap--vertical);padding-right: var(--wp--custom--gap--horizontal);padding-bottom: var(--wp--custom--gap--vertical);padding-left: var(--wp--custom--gap--horizontal);}.wp-block-gallery{margin-bottom: var(--wp--custom--gap--vertical);}ol,ul{padding-left: calc( 2 * var(--wp--custom--gap--horizontal) );}.wp-block-navigation{font-size: var(--wp--custom--font-sizes--normal);}.wp-block-post-title{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--preset--font-size--large);line-height: var(--wp--custom--heading--typography--line-height);margin-bottom: 0;}.wp-block-post-date{color: var(--wp--custom--color--foreground);font-size: var(--wp--preset--font-size--small);}.wp-block-pullquote{border-width: 1px 0;border-style: solid;font-size: var(--wp--preset--font-size--large);font-style: italic;padding-top: var(--wp--custom--gap--horizontal);padding-right: var(--wp--custom--gap--horizontal);padding-bottom: var(--wp--custom--gap--horizontal);padding-left: var(--wp--custom--gap--horizontal);}.wp-block-search{font-size: var(--wp--custom--button--typography--font-size);line-height: var(--wp--custom--body--typography--line-height);}.wp-block-separator{border-color: currentColor;border-width: 0 0 1px 0;border-style: solid;color: var(--wp--custom--color--foreground);}.wp-block-quote{border-color: var(--wp--custom--color--primary);border-width: 0 0 0 1px;border-style: solid;font-size: var(--wp--custom--font-sizes--normal);font-style: normal;padding-left: var(--wp--custom--gap--horizontal);}.wp-block-site-tagline{font-size: var(--wp--custom--font-sizes--x-small);}.wp-block-site-title{font-size: var(--wp--custom--font-sizes--normal);font-weight: 700;text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.has-background-color{color: var(--wp--preset--color--background) !important;}.has-tertiary-color{color: var(--wp--preset--color--tertiary) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.has-tertiary-background-color{background-color: var(--wp--preset--color--tertiary) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.has-tertiary-border-color{border-color: var(--wp--preset--color--tertiary) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-body-font-font-family{font-family: var(--wp--preset--font-family--body-font) !important;}.has-heading-font-font-family{font-family: var(--wp--preset--font-family--heading-font) !important;}','no'),(14450,'_elementor_global_css','a:7:{s:4:\"time\";i:1649890601;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(14451,'_elementor_assets_data','a:2:{s:3:\"css\";a:1:{s:7:\"widgets\";a:8:{s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:8:\"nav-menu\";a:2:{s:7:\"content\";s:121:\"<link rel=\"stylesheet\" href=\"https://the-collab.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css\">\";s:7:\"version\";s:5:\"3.6.4\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:258:\"<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:7:\"divider\";a:2:{s:7:\"content\";s:3742:\"<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:5:\"image\";a:2:{s:7:\"content\";s:268:\"<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:7:\"heading\";a:2:{s:7:\"content\";s:672:\"<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:5:\"forms\";a:2:{s:7:\"content\";s:6800:\"<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.e-form__buttons{-ms-flex-wrap:wrap;flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.e-form__indicators{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;font-size:13px;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators,.e-form__indicators__indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.e-form__indicators__indicator{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-preferred-size:0;flex-basis:0;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{width:100%;position:relative;background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden}.e-form__indicators__indicator__progress__meter{width:var(--e-form-steps-indicator-progress-meter-width,0);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;border-radius:var(--e-form-steps-indicator-progress-border-radius);background-color:var(--e-form-steps-indicator-progress-color);color:var(--e-form-steps-indicator-progress-meter-color);text-align:right;-webkit-transition:width .1s linear;-o-transition:width .1s linear;transition:width .1s linear}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{color:var(--e-form-steps-indicator-active-primary-color,#39b54a);border-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a);background-color:initial}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);font-size:var(--e-form-steps-indicator-icon-size);border-width:1px;border-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;margin-bottom:10px}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{width:var(--e-form-steps-indicator-icon-size);height:auto}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);border-width:1px;border-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{width:100%;height:var(--e-form-steps-divider-width);background-color:#c2cbd2}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-login .elementor-lost-password,.elementor-login .elementor-remember-me{font-size:.85em}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.elementor-form .elementor-button>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:178:\"<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:5:\"3.6.4\";}}}s:3:\"svg\";a:1:{s:9:\"font-icon\";a:2:{s:14:\"eicon-menu-bar\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"path\";s:279:\"M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z\";s:3:\"key\";s:14:\"eicon-menu-bar\";}s:7:\"version\";s:6:\"5.13.0\";}s:11:\"eicon-close\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"path\";s:361:\"M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z\";s:3:\"key\";s:11:\"eicon-close\";}s:7:\"version\";s:6:\"5.13.0\";}}}}','yes'),(12002,'elementor_events_db_version','1.0.0','no'),(13441,'elementor_pro_tracker_notice','1','yes'),(13442,'elementor_tracker_notice','1','yes'),(2061,'auto_update_plugins','a:7:{i:0;s:23:\"elementor/elementor.php\";i:4;s:23:\"loginizer/loginizer.php\";i:5;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:6;s:15:\"tutor/tutor.php\";i:7;s:27:\"woocommerce/woocommerce.php\";i:8;s:45:\"woocommerce-payments/woocommerce-payments.php\";i:17;s:33:\"koko-analytics/koko-analytics.php\";}','no'),(2066,'elementor_active_kit','23','yes'),(2079,'elementor_version','3.6.4','yes'),(2080,'elementor_install_history','a:9:{s:5:\"3.5.3\";i:1642962736;s:5:\"3.5.4\";i:1642962778;s:5:\"3.5.5\";i:1644952951;s:5:\"3.5.6\";i:1646099918;s:5:\"3.6.0\";i:1647997141;s:5:\"3.6.1\";i:1648083542;s:5:\"3.6.2\";i:1649255466;s:5:\"3.6.3\";i:1649804213;s:5:\"3.6.4\";i:1649890601;}','yes'),(2086,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}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:13:{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:14:\"Online Service\";i:7;s:7:\"Product\";i:8;s:11:\"Real Estate\";i:9;s:18:\"Social Involvement\";i:10;s:14:\"Thank You Page\";i:11;s:6:\"Travel\";i:12;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:901:{i:0;a:16:{s:4:\"tmpl\";i:768;s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{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:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{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:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:773;s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{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:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{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:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:776;s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{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:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{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:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:782;s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:783;s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{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:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:787;s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{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:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:788;s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{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:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{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:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:790;s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{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:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:791;s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{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:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:793;s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{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:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:794;s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{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:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{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:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{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:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{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:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{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:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{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:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{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:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{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:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:799;s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{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:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:800;s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{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:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:802;s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:804;s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{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:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:805;s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{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:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{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:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:807;s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{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:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{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:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{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:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{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:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{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:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:812;s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{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:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{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:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:814;s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{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:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:815;s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{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:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:817;s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{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:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:818;s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{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:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:819;s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:820;s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:821;s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:822;s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{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:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{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:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:824;s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{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:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{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:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{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:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:827;s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{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:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:828;s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{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:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{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:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:830;s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{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:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{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:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{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:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{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:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:835;s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{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:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:836;s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{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:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{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:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{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:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{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:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{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:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{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:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{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:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{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:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{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:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{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:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{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:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{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:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{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:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:854;s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{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:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:1368;s:2:\"id\";i:23275;s:5:\"title\";s:44:\"Classic | Contact | Digital Marketing Agency\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-agency-small.jpg\";s:12:\"tmpl_created\";i:1647799000;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-digital-marketing-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:857;s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{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:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:858;s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{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:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{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:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:861;s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:862;s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:863;s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{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:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{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:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{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:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{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:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{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:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{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:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{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:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{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:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{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:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{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:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{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:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{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:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{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:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{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:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{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:117:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:16:{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:118:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{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:119:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:166;a:16:{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:115:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{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:117:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:168;a:16:{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:107:\"https://library.elementor.com/lp/nails-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:169;a:16:{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:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{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:114:\"https://library.elementor.com/lp/music-festival-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:16:{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:125:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{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:118:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{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:117:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{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:130:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{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:115:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{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:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{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:117:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{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:119:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{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:115:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{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:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{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:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{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:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{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:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{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:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{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:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:16:{s:4:\"tmpl\";i:719;s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{s:4:\"tmpl\";i:720;s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:721;s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:724;s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{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:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{s:4:\"tmpl\";i:727;s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:728;s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:730;s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:733;s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{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:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{s:4:\"tmpl\";i:735;s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{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:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | 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:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:736;s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{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:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:203;a:16:{s:4:\"tmpl\";i:738;s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | 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:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:205;a:16:{s:4:\"tmpl\";i:742;s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | 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:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:743;s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | 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:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:16:{s:4:\"tmpl\";i:744;s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | 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:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | 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:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | 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:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | 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:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | 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:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | 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:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:34:\"Fly-In | Cta Popup | Dental Clinic\";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:127:\"https://library.elementor.com/popups/fly-in-cta-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | 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:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:752;s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | 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:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:16:{s:4:\"tmpl\";i:753;s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | 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:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:16:{s:4:\"tmpl\";i:754;s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | 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:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | 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:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | 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:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:757;s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | 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:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | 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:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:16:{s:4:\"tmpl\";i:759;s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{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:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | 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:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:760;s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | 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:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:16:{s:4:\"tmpl\";i:761;s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{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:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | 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:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"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:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:16:{s:4:\"tmpl\";i:763;s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:16:{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:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{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:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{s:4:\"tmpl\";i:766;s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:16:{s:4:\"tmpl\";i:767;s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:16:{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:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:831;s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:16:{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:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:718;s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{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:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:254;a:16:{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:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:16:{s:4:\"tmpl\";i:842;s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:16:{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:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{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:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:259;a:16:{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:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:16:{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:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:261;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{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:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:263;a:16:{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:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:16:{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:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:265;a:16:{s:4:\"tmpl\";i:748;s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{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:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:268;a:16:{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:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:16:{s:4:\"tmpl\";i:810;s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:16:{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:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:272;a:16:{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:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:16:{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:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:275;a:16:{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:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:278;a:16:{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:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:834;s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:16:{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:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:282;a:16:{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:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{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:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:284;a:16:{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:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:16:{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:104:\"https://library.elementor.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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:16:{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:105:\"https://library.elementor.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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:16:{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:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:288;a:16:{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:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{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:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:290;a:16:{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:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:16:{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:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:292;a:16:{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:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:293;a:16:{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:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{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:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:16:{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:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:296;a:16:{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:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{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:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:298;a:16:{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:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:299;a:16:{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:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:300;a:16:{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:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{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:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:302;a:16:{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:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:303;a:16:{s:4:\"tmpl\";i:797;s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{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:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:305;a:16:{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:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{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:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:16:{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:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:16:{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:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{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:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:310;a:16:{s:4:\"tmpl\";i:779;s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:811;s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{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:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{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:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:314;a:16:{s:4:\"tmpl\";i:846;s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{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:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{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:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{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:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:16:{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:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{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:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:749;s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:16:{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:104:\"https://library.elementor.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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:322;a:16:{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:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{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:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{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:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:16:{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:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{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:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{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:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{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:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:16:{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:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{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:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{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:106:\"https://library.elementor.com/blocks/about-3-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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:332;a:16:{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:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{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:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{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:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{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:106:\"https://library.elementor.com/blocks/about-4-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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:336;a:16:{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:106:\"https://library.elementor.com/blocks/about-5-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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:337;a:16:{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:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:717;s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{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:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:778;s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{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:106:\"https://library.elementor.com/blocks/about-6-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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:342;a:16:{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:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{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:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{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:104:\"https://library.elementor.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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:345;a:16:{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:104:\"https://library.elementor.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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:16:{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:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{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:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:762;s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{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:104:\"https://library.elementor.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:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:16:{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:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:16:{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:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:16:{s:4:\"tmpl\";i:746;s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{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:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:354;a:16:{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:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:16:{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:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{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:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{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:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:358;a:16:{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:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{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:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{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:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{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:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:843;s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{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:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{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:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{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:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:847;s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{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:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{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:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{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:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:16:{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:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{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:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{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:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{s:4:\"tmpl\";i:813;s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:16:{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:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{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:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{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:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{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:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{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:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{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:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:16:{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:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{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:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{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:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{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:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{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:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:16:{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:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{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:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{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:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:16:{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:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{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:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:833;s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{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:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:392;a:16:{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:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{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:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{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:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:395;a:16:{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:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{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:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:16:{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:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{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:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{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:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:825;s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{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:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{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:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{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:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{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:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{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:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{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:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{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:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{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:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:16:{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:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{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:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{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:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:16:{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:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{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:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{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:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:16:{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:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{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:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{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:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:16:{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:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{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:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:16:{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:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:16:{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:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{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:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:16:{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:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:16:{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:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{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:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{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:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:16:{s:4:\"tmpl\";i:758;s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{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:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{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:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:16:{s:4:\"tmpl\";i:798;s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{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:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:16:{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:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:755;s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{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:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{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:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:16:{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:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{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:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:764;s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{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:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{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:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:441;a:16:{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:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; 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:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{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:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{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:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:789;s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{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:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{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:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:16:{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:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:16:{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:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:16:{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:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:723;s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{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:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{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:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{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:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:16:{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:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{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:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{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:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{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:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:16:{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:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{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:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:16:{s:4:\"tmpl\";i:840;s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{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:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:16:{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:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:464;a:16:{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:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:832;s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{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:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:16:{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:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:468;a:16:{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:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{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:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{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:108:\"https://library.elementor.com/blocks/contact-1-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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:16:{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:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{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:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:747;s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:16:{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:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:16:{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:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:478;a:16:{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:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:16:{s:4:\"tmpl\";i:765;s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{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:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{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:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{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:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{s:4:\"tmpl\";i:844;s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{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:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{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:109:\"https://library.elementor.com/blocks/contact-16-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:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{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:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{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:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{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:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{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:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:849;s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{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:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:492;a:16:{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:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{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:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{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:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:739;s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{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:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:816;s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{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:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{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:108:\"https://library.elementor.com/blocks/contact-3-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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:16:{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:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{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:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{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:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:806;s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{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:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:16:{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:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{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:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:510;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:16:{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:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:751;s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{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:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:16:{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:108:\"https://library.elementor.com/blocks/contact-5-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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{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:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{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:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:16:{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:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:519;a:16:{s:4:\"tmpl\";i:729;s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{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:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{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:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:16:{s:4:\"tmpl\";i:725;s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:838;s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:16:{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:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:16:{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:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{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:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:16:{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:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:16:{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:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:532;a:16:{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:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:16:{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:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{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:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:16:{s:4:\"tmpl\";i:745;s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:16:{s:4:\"tmpl\";i:850;s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{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:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:16:{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:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{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:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{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:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{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:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{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:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{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:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{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:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{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:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:16:{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:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:839;s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{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:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:549;a:16:{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:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{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:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:16:{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:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:750;s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:852;s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{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:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:16:{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:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{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:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:16:{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:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:741;s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:848;s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{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:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:16:{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:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{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:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:16:{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:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{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:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:16:{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:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:823;s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{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:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:16:{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:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{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:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:16:{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:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{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:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:16:{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:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:756;s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{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:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:575;a:16:{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:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{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:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{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:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{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:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:579;a:16:{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:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{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:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{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:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{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:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{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:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{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:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{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:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{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:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{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:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:588;a:16:{s:4:\"tmpl\";i:714;s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{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:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{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:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:591;a:16:{s:4:\"tmpl\";i:734;s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{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:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:593;a:16:{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:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{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:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:595;a:16:{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:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{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:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:16:{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:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{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:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:599;a:16:{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:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:774;s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{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:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:602;a:16:{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:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{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:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{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:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{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:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{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:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{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:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:726;s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{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:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{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:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{s:4:\"tmpl\";i:737;s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{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:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{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:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{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:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{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:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:16:{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:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{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:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:622;a:16:{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:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:16:{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:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:16:{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:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{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:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:16:{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:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{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:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:16:{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:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{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:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:16:{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:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{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:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:632;a:16:{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:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{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:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:16:{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:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{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:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:636;a:16:{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:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{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:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:638;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:16:{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:108:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:640;a:16:{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:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:641;a:16:{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:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:642;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:644;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:645;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:646;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:647;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:648;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:649;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:650;a:16:{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:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{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:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{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:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{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:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{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:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{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:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{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:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{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:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{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:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{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:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{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:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{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:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{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:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{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:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{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:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{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:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{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:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{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:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{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:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{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:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{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:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{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:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{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:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{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:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{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:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{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:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{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:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{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:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{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:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{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:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{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:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{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:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{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:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{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:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:16:{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:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{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:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{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:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{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:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:16:{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:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:16:{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:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{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:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{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:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:16:{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:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:694;a:16:{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:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:697;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:699;a:16:{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:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:701;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:702;a:16:{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:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{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:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{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:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{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:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{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:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{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:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{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:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{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:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{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:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{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:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{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:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{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:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{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:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{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:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{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:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:16:{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:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{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:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{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:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{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:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{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:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{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:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{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:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{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:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{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:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{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:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{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:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:16:{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:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:16:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:16:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:16:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:16:{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:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:16:{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:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:16:{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:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:16:{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:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:16:{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:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:16:{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:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{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:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{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:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{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:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{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:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{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:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{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:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{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:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:16:{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: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:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{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:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{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:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{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:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:16:{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:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:768;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:775;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:779;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:781;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:782;a:16:{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:106:\"https://library.elementor.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:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:783;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{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:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:16:{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:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:16:{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:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:789;a:16:{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:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:16:{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:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:16:{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:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:16:{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:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:16:{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:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:16:{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:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:795;a:16:{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:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{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:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:16:{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:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:798;a:16:{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:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:16:{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:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:800;a:16:{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:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:16:{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:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:16:{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:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:16:{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:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:16:{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:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:16:{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:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:806;a:16:{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:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:16:{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:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:16:{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:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:813;a:16:{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:107:\"https://library.elementor.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:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:814;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:825;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:826;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:827;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:828;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:830;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:831;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:832;a:16:{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:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:833;a:16:{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:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:834;a:16:{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:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:16:{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:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:16:{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:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:16:{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:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:16:{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:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:16:{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:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:840;a:16:{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:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:841;a:16:{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:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:16:{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:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:843;a:16:{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:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:844;a:16:{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:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:846;a:16:{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:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:847;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:848;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:849;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:850;a:16:{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:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:851;a:16:{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:106:\"https://library.elementor.com/blocks/team-12-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:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:852;a:16:{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:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:853;a:16:{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:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:854;a:16:{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:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:855;a:16:{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:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:856;a:16:{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:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:857;a:16:{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:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:858;a:16:{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:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:859;a:16:{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:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:860;a:16:{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:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:861;a:16:{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:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:16:{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:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:863;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:865;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:866;a:16:{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:103:\"https://library.elementor.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:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:867;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:868;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:869;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:870;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:871;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:872;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:873;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:875;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:878;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:879;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:880;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:881;a:16:{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:113:\"https://library.elementor.com/blocks/testimonial-24-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:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:882;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:883;a:16:{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:113:\"https://library.elementor.com/blocks/testimonial-25-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:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:884;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:885;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:886;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:887;a:16:{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:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:888;a:16:{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:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:889;a:16:{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:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:890;a:16:{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:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:891;a:16:{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:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:892;a:16:{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:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:893;a:16:{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:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:894;a:16:{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:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:895;a:16:{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:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:896;a:16:{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:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:897;a:16:{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:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:898;a:16:{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:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:899;a:16:{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:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:900;a:16:{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:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(14511,'_transient_timeout_boldgrid_backup_system_zip_test','1650044180','no'),(14512,'_transient_boldgrid_backup_system_zip_test','1','no'),(14513,'_transient_timeout_boldgrid_backup_is_functional','1650044180','no'),(14514,'_transient_boldgrid_backup_is_functional','1','no'),(3525,'woocommerce_marketing_overview_welcome_hidden','yes','yes'),(5120,'can_compress_scripts','1','no'),(390,'tutor_option','a:38:{s:23:\"tutor_dashboard_page_id\";s:2:\"11\";s:21:\"enable_public_profile\";s:1:\"1\";s:25:\"enable_profile_completion\";s:1:\"1\";s:19:\"pagination_per_page\";s:2:\"20\";s:19:\"login_error_message\";s:0:\"\";s:25:\"course_completion_process\";s:8:\"flexible\";s:19:\"course_archive_page\";s:2:\"-1\";s:19:\"courses_col_per_row\";s:1:\"1\";s:16:\"courses_per_page\";s:2:\"12\";s:26:\"display_course_instructors\";s:1:\"1\";s:24:\"enable_q_and_a_on_course\";s:1:\"1\";s:20:\"default_video_source\";s:2:\"-1\";s:21:\"lesson_permalink_base\";s:6:\"lesson\";s:37:\"lesson_video_duration_youtube_api_key\";s:0:\"\";s:15:\"quiz_time_limit\";a:2:{s:5:\"value\";s:1:\"0\";s:4:\"time\";s:7:\"minutes\";}s:22:\"quiz_when_time_expires\";s:10:\"autosubmit\";s:21:\"quiz_attempts_allowed\";s:1:\"5\";s:17:\"quiz_grade_method\";s:13:\"highest_grade\";s:24:\"instructor_register_page\";s:2:\"13\";s:21:\"student_register_page\";s:2:\"12\";s:33:\"show_courses_completed_by_student\";s:1:\"1\";s:24:\"earning_admin_commission\";s:2:\"20\";s:29:\"earning_instructor_commission\";s:2:\"80\";s:18:\"tutor_earning_fees\";a:3:{s:9:\"fees_name\";s:0:\"\";s:11:\"fees_amount\";s:0:\"\";s:9:\"fees_type\";s:0:\"\";}s:23:\"statement_show_per_page\";s:0:\"\";s:19:\"min_withdraw_amount\";s:0:\"\";s:19:\"tutor_primary_color\";s:0:\"\";s:25:\"tutor_primary_hover_color\";s:0:\"\";s:16:\"tutor_text_color\";s:0:\"\";s:17:\"tutor_light_color\";s:0:\"\";s:20:\"tutor_button_primary\";s:0:\"\";s:19:\"tutor_button_danger\";s:0:\"\";s:20:\"tutor_button_success\";s:0:\"\";s:20:\"tutor_button_warning\";s:0:\"\";s:11:\"monetize_by\";s:4:\"free\";s:15:\"email_from_name\";s:10:\"The Collab\";s:18:\"email_from_address\";s:21:\"axelrodhahn@gmail.com\";s:17:\"email_footer_text\";s:0:\"\";}','yes'),(392,'tutor_version','1.9.13','yes'),(393,'tutor_first_activation_time','1642437920','yes'),(394,'tutor_wizard','active','yes'),(395,'widget_tutor_course_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(398,'tutor_withdraw_options','a:1:{s:22:\"bank_transfer_withdraw\";a:1:{s:11:\"instruction\";s:0:\"\";}}','yes'),(400,'recently_activated','a:1:{s:39:\"copy-delete-posts/copy-delete-posts.php\";i:1649264498;}','yes'),(13473,'analyst_accounts_data','s:410:\"O:26:\"Account\\AccountDataFactory\":1:{s:11:\"\0*\0accounts\";a:1:{i:0;O:19:\"Account\\AccountData\":7:{s:5:\"\0*\0id\";s:16:\"ovgxe3xq075ladbp\";s:9:\"\0*\0secret\";s:40:\"b4de5ed2ba7be687e233d152ec1e8fd116052ab0\";s:7:\"\0*\0path\";s:87:\"/home/aaxelr5/the-collab.com/wp-content/plugins/copy-delete-posts/copy-delete-posts.php\";s:14:\"\0*\0isInstalled\";b:0;s:12:\"\0*\0isOptedIn\";b:0;s:11:\"\0*\0isSigned\";b:0;s:20:\"\0*\0isInstallResolved\";N;}}}\";','yes'),(419,'_transient_jetpack_assumed_site_creation_date','2022-01-17 15:40:57','yes'),(458,'jetpack_plugin_api_action_links','a:2:{s:19:\"jetpack/jetpack.php\";a:3:{s:10:\"My Jetpack\";s:54:\"https://the-collab.com/wp-admin/admin.php?page=jetpack\";s:8:\"Settings\";s:64:\"https://the-collab.com/wp-admin/admin.php?page=jetpack#/settings\";s:7:\"Support\";s:63:\"https://the-collab.com/wp-admin/admin.php?page=jetpack-debugger\";}s:23:\"loginizer/loginizer.php\";a:2:{s:8:\"Settings\";s:56:\"https://the-collab.com/wp-admin/admin.php?page=loginizer\";s:7:\"Upgrade\";s:38:\"https://loginizer.com/features#compare\";}}','yes'),(459,'jp_sync_last_success_immediate-send','1642963092.8826','no'),(460,'woocommerce_setup_jetpack_opted_in','1','yes'),(9170,'elementor_pro_theme_builder_conditions','a:1:{s:6:\"single\";a:1:{i:437;a:1:{i:0;s:21:\"include/singular/page\";}}}','yes'),(598,'boldgrid_backup_in_progress_data','a:7:{s:6:\"status\";s:22:\"Backing up database...\";s:12:\"log_filename\";s:22:\"archive-1650038348.log\";s:3:\"pid\";i:1146838;s:10:\"start_time\";i:1650038348;s:7:\"trigger\";s:35:\"axelrodhahn (ariel@axelrodlmhc.com)\";s:6:\"tables\";a:68:{i:0;s:28:\"wpob_actionscheduler_actions\";i:1;s:27:\"wpob_actionscheduler_claims\";i:2;s:27:\"wpob_actionscheduler_groups\";i:3;s:25:\"wpob_actionscheduler_logs\";i:4;s:16:\"wpob_commentmeta\";i:5;s:13:\"wpob_comments\";i:6;s:13:\"wpob_e_events\";i:7;s:18:\"wpob_e_submissions\";i:8;s:30:\"wpob_e_submissions_actions_log\";i:9;s:25:\"wpob_e_submissions_values\";i:10;s:30:\"wpob_koko_analytics_post_stats\";i:11;s:34:\"wpob_koko_analytics_referrer_stats\";i:12;s:33:\"wpob_koko_analytics_referrer_urls\";i:13;s:30:\"wpob_koko_analytics_site_stats\";i:14;s:10:\"wpob_links\";i:15;s:19:\"wpob_loginizer_logs\";i:16;s:27:\"wpob_nextend2_image_storage\";i:17;s:29:\"wpob_nextend2_section_storage\";i:18;s:37:\"wpob_nextend2_smartslider3_generators\";i:19;s:34:\"wpob_nextend2_smartslider3_sliders\";i:20;s:39:\"wpob_nextend2_smartslider3_sliders_xref\";i:21;s:33:\"wpob_nextend2_smartslider3_slides\";i:22;s:12:\"wpob_options\";i:23;s:13:\"wpob_postmeta\";i:24;s:10:\"wpob_posts\";i:25;s:23:\"wpob_term_relationships\";i:26;s:18:\"wpob_term_taxonomy\";i:27;s:13:\"wpob_termmeta\";i:28;s:10:\"wpob_terms\";i:29;s:19:\"wpob_tutor_earnings\";i:30;s:31:\"wpob_tutor_quiz_attempt_answers\";i:31;s:24:\"wpob_tutor_quiz_attempts\";i:32;s:32:\"wpob_tutor_quiz_question_answers\";i:33;s:25:\"wpob_tutor_quiz_questions\";i:34;s:20:\"wpob_tutor_withdraws\";i:35;s:13:\"wpob_usermeta\";i:36;s:10:\"wpob_users\";i:37;s:26:\"wpob_wc_admin_note_actions\";i:38;s:19:\"wpob_wc_admin_notes\";i:39;s:23:\"wpob_wc_category_lookup\";i:40;s:23:\"wpob_wc_customer_lookup\";i:41;s:20:\"wpob_wc_download_log\";i:42;s:27:\"wpob_wc_order_coupon_lookup\";i:43;s:28:\"wpob_wc_order_product_lookup\";i:44;s:19:\"wpob_wc_order_stats\";i:45;s:24:\"wpob_wc_order_tax_lookup\";i:46;s:27:\"wpob_wc_product_meta_lookup\";i:47;s:19:\"wpob_wc_rate_limits\";i:48;s:22:\"wpob_wc_reserved_stock\";i:49;s:24:\"wpob_wc_tax_rate_classes\";i:50;s:16:\"wpob_wc_webhooks\";i:51;s:20:\"wpob_weforms_entries\";i:52;s:22:\"wpob_weforms_entrymeta\";i:53;s:25:\"wpob_woocommerce_api_keys\";i:54;s:37:\"wpob_woocommerce_attribute_taxonomies\";i:55;s:49:\"wpob_woocommerce_downloadable_product_permissions\";i:56;s:20:\"wpob_woocommerce_log\";i:57;s:31:\"wpob_woocommerce_order_itemmeta\";i:58;s:28:\"wpob_woocommerce_order_items\";i:59;s:34:\"wpob_woocommerce_payment_tokenmeta\";i:60;s:31:\"wpob_woocommerce_payment_tokens\";i:61;s:25:\"wpob_woocommerce_sessions\";i:62;s:40:\"wpob_woocommerce_shipping_zone_locations\";i:63;s:38:\"wpob_woocommerce_shipping_zone_methods\";i:64;s:31:\"wpob_woocommerce_shipping_zones\";i:65;s:35:\"wpob_woocommerce_tax_rate_locations\";i:66;s:26:\"wpob_woocommerce_tax_rates\";i:67;s:17:\"wpob_wpforms_lite\";}s:4:\"step\";i:1;}','yes'),(549,'post_by_email_address1','NULL','yes'),(541,'_transient_dirsize_cache','a:5:{s:55:\"/home/aaxelr5/the-collab.com/wp-content/uploads/2022/01\";i:0;s:52:\"/home/aaxelr5/the-collab.com/wp-content/uploads/2022\";i:0;s:67:\"/home/aaxelr5/the-collab.com/wp-content/uploads/woocommerce_uploads\";i:13;s:55:\"/home/aaxelr5/the-collab.com/wp-content/uploads/wc-logs\";i:13;s:47:\"/home/aaxelr5/the-collab.com/wp-content/uploads\";i:270355;}','yes'),(532,'jetpack_content_post_details_tags','1','yes'),(533,'jetpack_content_post_details_author','1','yes'),(534,'jetpack_content_post_details_comment','1','yes'),(535,'verification_services_codes','0','yes'),(519,'jp_sync_lock_full_sync','','no'),(530,'jetpack_content_post_details_date','1','yes'),(531,'jetpack_content_post_details_categories','1','yes'),(523,'wpcom_publish_posts_with_markdown','1','yes'),(517,'jpsq_sync_checkout','0:0','no'),(518,'jp_sync_last_success_sync','1644933486.5495','no'),(613,'_transient_woocommerce_reports-transient-version','1642471134','yes'),(652,'stats_cache','a:2:{s:32:\"69c8d2cb881272835cbc238df73389f2\";a:1:{i:1644933319;a:0:{}}s:32:\"ec9c2bb39c5ffe2f134e4a2beb1896a8\";a:1:{i:1644933319;a:0:{}}}','yes'),(659,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:27:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-payments/\";}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:15;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:16;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:17;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:18;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:19;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:20;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:21;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:22;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:23;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:24;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:25;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:26;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1642440092;}','no'),(750,'boldgrid_backup_last_backup','1649226444','no'),(751,'boldgrid_backup_latest_backup','a:34:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:55747739;s:4:\"save\";b:1;s:10:\"total_size\";i:178867195;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"ABSPATH\";s:29:\"/home/aaxelr5/the-collab.com/\";s:9:\"backup_id\";s:8:\"11fcd6c5\";s:7:\"siteurl\";s:22:\"https://the-collab.com\";s:9:\"timestamp\";i:1649226363;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:14:\"the-collab.com\";s:13:\"php_sapi_name\";s:8:\"cgi-fcgi\";s:9:\"php_uname\";s:113:\"Linux ecbiz238.inmotionhosting.com 3.10.0-962.3.2.lve1.5.36.el7.x86_64 #1 SMP Mon May 18 02:16:06 EDT 2020 x86_64\";s:11:\"php_version\";s:6:\"7.3.33\";s:11:\"server_addr\";s:14:\"209.182.198.64\";s:11:\"server_name\";s:14:\"the-collab.com\";s:15:\"server_protocol\";s:8:\"HTTP/1.1\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:2429;s:8:\"username\";s:7:\"aaxelr5\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:89:\"/home/aaxelr5/boldgrid_backup/boldgrid-backup-the-collab.com-11fcd6c5-20220406-062604.zip\";s:11:\"lastmodunix\";i:1649226444;s:8:\"duration\";s:5:\"80.65\";s:11:\"db_duration\";s:4:\"0.55\";s:11:\"db_filename\";s:33:\"aaxelr5_wp844.20220406-062603.sql\";s:12:\"mail_success\";b:1;}','yes'),(752,'bglib_activity','a:1:{s:15:\"boldgrid-backup\";a:1:{s:18:\"any_backup_created\";i:6;}}','yes'),(901,'category_children','a:0:{}','yes'),(7435,'woocommerce_enable_signup_from_checkout_for_subscriptions','yes','no'),(1149,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":4,\"critical\":1}','yes'),(2087,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:37:\"Is Cloud Hosting for Websites Secure?\";s:7:\"excerpt\";s:235:\"Hosting security plays a key role in keeping your site safe from malicious actors. Because of the way that cloud hosting operates, it offers security benefits that go beyond traditional hosting. In this post, we explore these benefits.\";s:7:\"created\";i:1649657715;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/cloud-hosting-secure/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:32:\"What Is Brutalism in Web Design?\";s:7:\"excerpt\";s:207:\"Brutalism is a special breed of web design, working well for quirky, creative brands and individuals. However, this rule-bending design technique must be employed with care. Read this guide to find out how.\";s:7:\"created\";i:1649328837;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/brutalism-in-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:114:\"Introducing Elementor 3.6: Leverage Flexbox Containers To Create Top Performing, Pixel-Perfect, Responsive Designs\";s:7:\"excerpt\";s:245:\"Elementor 3.6 marks the first step in a series of infrastructural updates that will transform the way you build websites, starting with Flexbox Containers. Using this feature will enable you to create pixel-perfect, responsive, and lean designs.\";s:7:\"created\";i:1649159446;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/introducing-flexbox-containers/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:50:\"How To Optimize Your Sales Funnel Conversion Rates\";s:7:\"excerpt\";s:201:\"Sales funnels help to convert leads into sales, increase revenue and improve marketing ROI. In this guide, we explain what a sales funnel is, its different stages, and ten strategies for optimizing it.\";s:7:\"created\";i:1649056078;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:121:\"https://elementor.com/blog/optimize-sales-funnel/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:76:\"Crafting the Ideal B2B WordPress Website With Elementor: Hive’s Case Study\";s:7:\"excerpt\";s:244:\"Hive is the world\'s first democratic project management platform. Read about how Elementor has become an essential tool in its marketing arsenal, enabling the B2B platform to take on more projects, drive more leads, and scale even more rapidly.\";s:7:\"created\";i:1648561497;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:115:\"https://elementor.com/blog/hive-case-study/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(14632,'_transient_timeout_elementor_remote_info_api_data_3.6.4','1650081531','no'),(14633,'_transient_elementor_remote_info_api_data_3.6.4','a:4:{s:9:\"timestamp\";s:10:\"1650036527\";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:64:{i:0;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:1;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:2;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:3;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:4;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:5;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:6;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:7;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:8;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:9;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:10;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:11;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:12;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:13;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:14;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:15;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:16;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:17;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:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;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:20;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:21;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:22;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:23;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:24;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:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;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:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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\"]\";}}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:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(2092,'_elementor_installed_time','1642962739','yes'),(2113,'elementor_log','a:42:{s:32:\"2f8b22503014336f8315fad251903af4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"558642\";s:7:\"\0*\0file\";s:85:\"https://the-collab.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-02-15 19:48:52\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"elementorFrontend is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-15 19:48:52\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1644954532\";s:7:\"message\";s:32:\"elementorFrontend is not defined\";s:3:\"url\";s:85:\"https://the-collab.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"558642\";}}s:32:\"44d2dc85b623d000c7dd9d3f092173e3\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"2520\";s:7:\"\0*\0file\";s:109:\"https://the-collab.com/wp-content/plugins/elementor-pro/assets/js/nav-menu.4432c50d0d1f64da9d7c.bundle.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-02-17 15:44:11\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:27:\"this.stretchElement is null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-02-17 15:44:11\";i:1;s:19:\"2022-02-17 15:44:13\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1645112651\";s:7:\"message\";s:27:\"this.stretchElement is null\";s:3:\"url\";s:109:\"https://the-collab.com/wp-content/plugins/elementor-pro/assets/js/nav-menu.4432c50d0d1f64da9d7c.bundle.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"2520\";}}s:32:\"8f1919a67afb6e91e33d93595c1e7303\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-01 01:58:38\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_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:\"2022-03-01 01:58:38\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a57a3c4b9ad333705024c779744bccb6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-01 01:58:38\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/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:\"2022-03-01 01:58:38\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"cf1034b14b8c1509316f187842322211\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-01 01:58:38\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/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:\"2022-03-01 01:58:38\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"2ee558f844be60d1f7cd7837e73858cb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-01 01:58:38\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-01 01:58:38\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d671738071097b8946790411b3ed5b23\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-01 01:58:38\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-01 01:58:38\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1bba1900be64b6c772d5bc3527a9764c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:81:\"/home/aaxelr5/the-collab.com/wp-content/plugins/elementor-pro/license/updater.php\";s:7:\"\0*\0line\";i:84;s:7:\"\0*\0date\";s:19:\"2022-03-01 21:23:34\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:28:\"Undefined index: new_version\";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:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-03-01 21:23:34\";i:1;s:19:\"2022-03-02 05:57:17\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:28:\"Undefined index: new_version\";s:4:\"file\";s:81:\"/home/aaxelr5/the-collab.com/wp-content/plugins/elementor-pro/license/updater.php\";s:4:\"line\";i:84;s:5:\"trace\";b:1;}}s:32:\"d9a62d1db522242ca1af1244fd159bb4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-23 00:59:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_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:\"2022-03-23 00:59:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"225390396e0cab47d7570f51a5bca1b3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-23 00:59:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/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:\"2022-03-23 00:59:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e2ef87fa44a38c7c734cbacccb7fc29a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-23 00:59:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/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:\"2022-03-23 00:59:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"eb651580c3774bebc6b65cd3f5375758\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-23 00:59:01\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-23 00:59:01\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6cf2ee8b495ff0060aaf3c83302e4ae0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-23 00:59:01\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-23 00:59:01\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cd7fba8df7bccd07d6e08ce6e61dfac0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-24 00:59:01\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.0\";s:2:\"to\";s:5:\"3.6.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-24 00:59:01\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.0\";s:2:\"to\";s:5:\"3.6.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4b3d4d5c9c7c22a933b5e6afd0c80384\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-24 00:59:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_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:\"2022-03-24 00:59:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"847e757e3721654b3a2bdbb41a257a59\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-24 00:59:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/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:\"2022-03-24 00:59:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"28a46751331de1f9d099553dfdb84b65\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-24 00:59:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/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:\"2022-03-24 00:59:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"126064e844cc5f643716b820f6e7e608\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-24 00:59:02\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.0\";s:2:\"to\";s:5:\"3.6.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-24 00:59:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.0\";s:2:\"to\";s:5:\"3.6.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d496cee3feba0691f4acb9f6fab5a16e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-05 00:58:39\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-05 00:58:39\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fc5ccf985fd1cacc875225d747561356\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-05 00:58:41\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_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:\"2022-04-05 00:58:41\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"5ba57ecd77004f6a2f12fc73a10b09c6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-05 00:58:41\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/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:\"2022-04-05 00:58:41\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"96df5829f036d072dd018fb4290071a1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-05 00:58:41\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/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:\"2022-04-05 00:58:41\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4f96865217998d27719182877beb5d64\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-05 00:58:41\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-05 00:58:41\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8e5be7dedb58def15982c3a647468d7e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-06 14:31:06\";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:\"2022-04-06 14:31:06\";}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:\"ae0f1283e1e5a315df4e963553d27392\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-06 14:31:06\";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:\"2022-04-06 14:31:06\";}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:\"e4190b2fb27354b7fc8875718533a075\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-06 14:31:06\";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:\"2022-04-06 14:31:06\";}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:\"2cdb79a28fe283625ebe3ce5037a5d70\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-06 14:31:06\";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:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-06 14:31:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8d5f06f3b484bdf9cd721f7331589b67\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-06 14:31:06\";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:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-06 14:31:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"04d218c13cb13d44ba738c6123f513a6\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:90:\"/home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:2367;s:7:\"\0*\0date\";s:19:\"2022-04-06 16:50:14\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1061:\"Uncaught TypeError: Argument 1 passed to Elementor\\Controls_Stack::sanitize_settings() must be of the type array, string given, called in /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php on line 1105 and defined in /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php:2367\nStack trace:\n#0 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php(1105): Elementor\\Controls_Stack-&gt;sanitize_settings(&#039;e:2:{s:18:&quot;eael...&#039;)\n#1 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php(2116): Elementor\\Controls_Stack-&gt;get_data(&#039;settings&#039;)\n#2 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/core/base/base-object.php(142): Elementor\\Controls_Stack-&gt;get_init_settings()\n#3 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/core/base/base-object.php(40): Elementor\\Core\\Base\\Base_Object-&gt;ensure_settings()\n#4 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/\";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:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2022-04-06 16:50:14\";i:1;s:19:\"2022-04-06 16:50:19\";i:2;s:19:\"2022-04-06 16:50:36\";i:3;s:19:\"2022-04-06 16:50:49\";i:4;s:19:\"2022-04-06 16:59:53\";i:5;s:19:\"2022-04-06 17:00:16\";i:6;s:19:\"2022-04-06 17:03:43\";i:7;s:19:\"2022-04-06 17:04:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught TypeError: Argument 1 passed to Elementor\\Controls_Stack::sanitize_settings() must be of the type array, string given, called in /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php on line 1105 and defined in /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php:2367\nStack trace:\n#0 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php(1105): Elementor\\Controls_Stack->sanitize_settings(\'e:2:{s:18:\"eael...\')\n#1 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php(2116): Elementor\\Controls_Stack->get_data(\'settings\')\n#2 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/core/base/base-object.php(142): Elementor\\Controls_Stack->get_init_settings()\n#3 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/core/base/base-object.php(40): Elementor\\Core\\Base\\Base_Object->ensure_settings()\n#4 /home/aaxelr5/the-collab.com/wp-content/plugins/elementor/\";s:4:\"file\";s:90:\"/home/aaxelr5/the-collab.com/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:2367;s:5:\"trace\";b:1;}}s:32:\"0625e4769f097703245e024978d165c8\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"5598\";s:7:\"\0*\0file\";s:108:\"https://the-collab.com/wp-content/plugins/elementor-pro/assets/js/gallery.9c61bb9957e10e6d7bda.bundle.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-04-06 17:15:30\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:78:\"undefined is not an object (evaluating \\&#039;this.gallery.setSettings\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-04-06 17:15:30\";i:1;s:19:\"2022-04-06 17:15:33\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1649265330\";s:7:\"message\";s:68:\"undefined is not an object (evaluating \\\'this.gallery.setSettings\\\')\";s:3:\"url\";s:108:\"https://the-collab.com/wp-content/plugins/elementor-pro/assets/js/gallery.9c61bb9957e10e6d7bda.bundle.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"5598\";}}s:32:\"cb33c5a3949b98f1c1e7a6a7fd25223a\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"242683\";s:7:\"\0*\0file\";s:85:\"https://the-collab.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.2\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-04-08 21:50:01\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:68:\"undefined is not an object (evaluating \\&#039;C.ui.form.html\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-04-08 21:50:01\";i:1;s:19:\"2022-04-08 21:50:46\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1649454601\";s:7:\"message\";s:58:\"undefined is not an object (evaluating \\\'C.ui.form.html\\\')\";s:3:\"url\";s:85:\"https://the-collab.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"242683\";}}s:32:\"b48ed24443698fe1520d13b37a91b549\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"362188\";s:7:\"\0*\0file\";s:85:\"https://the-collab.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.2\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-04-08 22:00:01\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:79:\"undefined is not an object (evaluating \\&#039;this.container.isEditable\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-08 22:00:01\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1649455201\";s:7:\"message\";s:69:\"undefined is not an object (evaluating \\\'this.container.isEditable\\\')\";s:3:\"url\";s:85:\"https://the-collab.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"362188\";}}s:32:\"b37aea81c51887747e62be4f9b66367f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:99:\"/home/aaxelr5/the-collab.com/wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php\";s:7:\"\0*\0line\";i:179;s:7:\"\0*\0date\";s:19:\"2022-04-10 10:11:45\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:25:\"Undefined index: referrer\";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:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-04-10 10:11:45\";i:1;s:19:\"2022-04-15 08:31:06\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:25:\"Undefined index: referrer\";s:4:\"file\";s:99:\"/home/aaxelr5/the-collab.com/wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php\";s:4:\"line\";i:179;s:5:\"trace\";b:1;}}s:32:\"9358ddb4e141da075d9e5d3e1fb3fbab\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-12 22:56:53\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_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:\"2022-04-12 22:56:53\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"58c9ef46fd4079f9d47c8098859c8cf4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-12 22:56:53\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/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:\"2022-04-12 22:56:53\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"1baaaee9c8650e22da757160c81358a3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-12 22:56:53\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/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:\"2022-04-12 22:56:53\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4ad84ce0bb2827d4aaa1a3c8d334f57c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-12 22:56:53\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-12 22:56:53\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6839183928bd771dd566f797e0766fb6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 22:56:39\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-13 22:56:39\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5b5229505763d2db84a6ee088370562a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 22:56:41\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_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:\"2022-04-13 22:56:41\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"408771835a309a82cf9912494d75028c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 22:56:41\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/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:\"2022-04-13 22:56:41\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"92658ecc78f0c33ccdb0942a3722e1c5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 22:56:41\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/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:\"2022-04-13 22:56:41\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1947bea0b00581a7aa06ff5000485aa3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 22:56:41\";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:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-13 22:56:41\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','no'),(13981,'koko_analytics_settings','a:4:{s:10:\"use_cookie\";i:0;s:18:\"exclude_user_roles\";a:0:{}s:23:\"prune_data_after_months\";i:36;s:12:\"default_view\";s:12:\"last_28_days\";}','yes'),(2149,'wcpay_should_redirect_to_onboarding','','yes'),(2156,'_wcpay_feature_subscriptions','1','yes'),(2163,'widget_currency_switcher_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2442,'woocommerce_maybe_regenerate_images_hash','91b4c9009722c706e00dfc584c4f8626','yes'),(2168,'woocommerce_subscriptions_multiple_purchase','yes','yes'),(2169,'woocommerce_subscriptions_sync_payments','no','yes'),(2170,'woocommerce_subscriptions_prorate_synced_payments','no','yes'),(2171,'woocommerce_subscriptions_days_no_fee','0','yes'),(2172,'woocommerce_subscriptions_paypal_debugging_default_set','true','yes'),(2173,'woocommerce_subscriptions_is_active','1','yes'),(2182,'woocommerce_woocommerce_payments_settings','a:18:{s:7:\"enabled\";s:3:\"yes\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:7:\"default\";s:35:\"payment_request_button_branded_type\";s:0:\"\";s:25:\"apple_pay_verified_domain\";s:14:\"the-collab.com\";s:20:\"apple_pay_domain_set\";s:2:\"no\";}','yes'),(2183,'wcpay_upe_is_tracked','1','yes'),(2184,'wcpay_activation_timestamp','1642962999','yes'),(2185,'woocommerce_woocommerce_payments_version','3.7.0','yes'),(2186,'wcpay_multi_currency_store_currency','USD','yes'),(2187,'wcs_upgrade_initial_total_subscription_count','0','yes'),(2188,'woocommerce_subscriptions_previous_version','0','yes'),(2189,'wc_subscriptions_siteurl','https://the-col_[wc_subscriptions_siteurl]_lab.com','yes'),(2190,'woocommerce_subscriptions_active_version','3.1.6','yes'),(3995,'db_upgraded','','yes'),(2452,'shopstore_admin_notice_welcome','1','yes'),(4001,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649226461;}','no'),(2196,'woocommerce_task_list_tracked_completed_tasks','a:1:{i:0;s:13:\"store_details\";}','yes'),(2197,'woocommerce_task_list_completed_lists','a:1:{i:0;s:8:\"extended\";}','yes'),(2202,'eael_setup_wizard','complete','yes'),(2203,'eael_save_settings','a:60:{s:9:\"post-grid\";s:0:\"\";s:13:\"post-timeline\";s:0:\"\";s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";s:0:\"\";s:13:\"facebook-feed\";s:0:\"\";s:19:\"advanced-data-table\";s:0:\"\";s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";s:0:\"\";s:14:\"contact-form-7\";s:0:\"\";s:7:\"weforms\";s:0:\"\";s:10:\"ninja-form\";s:0:\"\";s:9:\"formstack\";s:0:\"\";s:12:\"gravity-form\";s:0:\"\";s:12:\"caldera-form\";s:0:\"\";s:7:\"wpforms\";s:0:\"\";s:10:\"fluentform\";s:0:\"\";s:8:\"typeform\";s:0:\"\";s:24:\"betterdocs-category-grid\";s:0:\"\";s:23:\"betterdocs-category-box\";s:0:\"\";s:22:\"betterdocs-search-form\";s:0:\"\";s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";s:0:\"\";s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";s:0:\"\";s:8:\"woo-cart\";s:0:\"\";s:14:\"login-register\";s:0:\"\";s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";s:0:\"\";s:20:\"woo-product-carousel\";s:0:\"\";s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";s:0:\"\";s:18:\"interactive-circle\";s:0:\"\";s:14:\"better-payment\";s:0:\"\";s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;s:13:\"scroll-to-top\";i:1;}','yes'),(2230,'eael_editor_updated_at','1644954190','yes'),(2306,'_elementor_settings_update_time','1645115227','yes'),(2307,'elementor_cpt_support','a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:14:\"e-landing-page\";}','yes'),(2308,'elementor_disable_color_schemes','yes','yes'),(2309,'elementor_disable_typography_schemes','yes','yes'),(2310,'elementor_allow_tracking','no','yes'),(2311,'elementor_notice','','yes'),(2312,'elementor_google_maps_api_key','','yes'),(2313,'elementor_css_print_method','external','yes'),(2314,'elementor_editor_break_lines','','yes'),(2315,'elementor_unfiltered_files_upload','','yes'),(2316,'elementor_font_display','auto','yes'),(2317,'elementor_load_fa4_shim','','yes'),(2318,'elementor_experiment-e_optimized_assets_loading','active','yes'),(2319,'elementor_experiment-e_optimized_css_loading','active','yes'),(2320,'elementor_experiment-e_font_icon_svg','active','yes'),(2321,'elementor_experiment-e_import_export','active','yes'),(2322,'elementor_experiment-additional_custom_breakpoints','active','yes'),(2323,'elementor_experiment-e_hidden_wordpress_widgets','active','yes'),(2324,'elementor_experiment-favorite-widgets','active','yes'),(2325,'elementor_experiment-e_dom_optimization','active','yes'),(2326,'elementor_experiment-a11y_improvements','active','yes'),(2327,'elementor_experiment-landing-pages','active','yes'),(2328,'elementor_experiment-elements-color-picker','active','yes'),(2329,'elementor_experiment-admin-top-bar','active','yes'),(3276,'loginizer_dismiss_newsletter','1643045529','yes'),(8906,'theme_mods_twentytwentytwo','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1644934372;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";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\";}}}}','yes'),(2921,'_transient_shipping-transient-version','1643018899','yes'),(2960,'40e314001_eael_elements','a:0:{}','no'),(2961,'40e314001_eael_custom_js','','no'),(2962,'40e314001_eael_updated_at','1642963081','no'),(3610,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:19;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1645111687;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";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\";}}}}','yes'),(3613,'hello_theme_version','2.5.0','yes'),(3282,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:5:\"trash\";s:1:\"1\";s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(2577,'n2_ss3_version','3.5.1.3/b:release-3.5.1.3/r:5023544a4fcfe8dfb1226d4b8c667713df879709','yes'),(2578,'widget_smart-swatches-filter-products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2579,'widget_aspw-widgets-wrap','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2580,'widget_smartslider3','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2584,'apsw_search_form','','yes'),(2585,'apsw_search_results','','yes'),(2586,'apsw_color_scheme','','yes'),(2587,'general_settings','','yes'),(2588,'atawc_label','','yes'),(2589,'atawc_color','','yes'),(2590,'atawc_images','','yes'),(2591,'archive_settings','','yes'),(2592,'atawc_tutorials','','yes'),(2218,'eael_version','5.0.7','yes'),(2219,'eael_remove_old_cache','1','yes'),(2224,'wcpay_menu_badge_hidden','yes','yes'),(2258,'wcpay_account_data','a:2:{s:7:\"account\";a:25:{s:10:\"account_id\";s:21:\"acct_1KIyn62HAaIq4eb1\";s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";s:20:\"live_publishable_key\";s:42:\"pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn\";s:20:\"test_publishable_key\";s:107:\"pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR\";s:7:\"is_live\";b:1;s:24:\"has_pending_requirements\";b:0;s:24:\"has_overdue_requirements\";b:0;s:16:\"current_deadline\";N;s:6:\"status\";s:8:\"complete\";s:12:\"capabilities\";a:16:{s:19:\"bancontact_payments\";s:6:\"active\";s:13:\"card_payments\";s:6:\"active\";s:12:\"eps_payments\";s:6:\"active\";s:16:\"giropay_payments\";s:6:\"active\";s:14:\"ideal_payments\";s:6:\"active\";s:13:\"link_payments\";s:6:\"active\";s:12:\"p24_payments\";s:6:\"active\";s:19:\"sepa_debit_payments\";s:6:\"active\";s:15:\"sofort_payments\";s:6:\"active\";s:9:\"transfers\";s:6:\"active\";s:28:\"us_bank_account_ach_payments\";s:6:\"active\";s:19:\"acss_debit_payments\";s:11:\"unrequested\";s:26:\"afterpay_clearpay_payments\";s:11:\"unrequested\";s:6:\"klarna\";s:11:\"unrequested\";s:23:\"tax_reporting_us_1099_k\";s:11:\"unrequested\";s:26:\"tax_reporting_us_1099_misc\";s:11:\"unrequested\";}s:23:\"capability_requirements\";a:16:{s:19:\"acss_debit_payments\";a:0:{}s:26:\"afterpay_clearpay_payments\";a:1:{i:0;s:30:\"business_profile.support_phone\";}s:19:\"bancontact_payments\";a:0:{}s:13:\"card_payments\";a:0:{}s:12:\"eps_payments\";a:0:{}s:16:\"giropay_payments\";a:0:{}s:14:\"ideal_payments\";a:0:{}s:6:\"klarna\";a:0:{}s:13:\"link_payments\";a:0:{}s:12:\"p24_payments\";a:0:{}s:19:\"sepa_debit_payments\";a:0:{}s:15:\"sofort_payments\";a:0:{}s:23:\"tax_reporting_us_1099_k\";a:0:{}s:26:\"tax_reporting_us_1099_misc\";a:0:{}s:9:\"transfers\";a:0:{}s:28:\"us_bank_account_ach_payments\";a:0:{}}s:16:\"payments_enabled\";b:1;s:15:\"deposits_status\";s:5:\"daily\";s:20:\"statement_descriptor\";s:14:\"THE-COLLAB.COM\";s:20:\"latest_tos_agreement\";a:3:{s:4:\"date\";s:19:\"2022-01-17 17:14:49\";s:6:\"source\";s:6:\"signup\";s:18:\"is_current_version\";b:1;}s:4:\"fees\";a:11:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.0290000000000000014710455076283324160613119602203369140625;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}s:10:\"bancontact\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.01400000000000000029143354396410359186120331287384033203125;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:4:\"card\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.0290000000000000014710455076283324160613119602203369140625;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:12:\"card_present\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.0259999999999999988065102485279567190445959568023681640625;s:10:\"fixed_rate\";i:10;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:3:\"eps\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.0179999999999999986399767948341832379810512065887451171875;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:5:\"ideal\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:80;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:7:\"giropay\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.01400000000000000029143354396410359186120331287384033203125;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:3:\"p24\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.021999999999999998723243521681069978512823581695556640625;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:6:\"sofort\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.01400000000000000029143354396410359186120331287384033203125;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:10:\"sepa_debit\";a:4:{s:4:\"base\";a:4:{s:15:\"percentage_rate\";d:0.008000000000000000166533453693773481063544750213623046875;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";s:7:\"fee_cap\";i:600;}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.01499999999999999944488848768742172978818416595458984375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.01000000000000000020816681711721685132943093776702880859375;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}}s:7:\"capital\";a:3:{s:15:\"has_active_loan\";b:0;s:18:\"has_previous_loans\";b:0;s:5:\"loans\";a:0:{}}s:14:\"fraud_services\";a:2:{s:6:\"stripe\";a:0:{}s:4:\"sift\";a:2:{s:10:\"beacon_key\";s:10:\"affbdadb36\";s:18:\"sandbox_beacon_key\";s:10:\"6ad0ad748b\";}}s:16:\"store_currencies\";a:2:{s:7:\"default\";s:3:\"usd\";s:9:\"supported\";a:1:{i:0;s:3:\"usd\";}}s:19:\"customer_currencies\";a:1:{s:9:\"supported\";a:136:{i:0;s:3:\"usd\";i:1;s:3:\"aed\";i:2;s:3:\"afn\";i:3;s:3:\"all\";i:4;s:3:\"amd\";i:5;s:3:\"ang\";i:6;s:3:\"aoa\";i:7;s:3:\"ars\";i:8;s:3:\"aud\";i:9;s:3:\"awg\";i:10;s:3:\"azn\";i:11;s:3:\"bam\";i:12;s:3:\"bbd\";i:13;s:3:\"bdt\";i:14;s:3:\"bgn\";i:15;s:3:\"bif\";i:16;s:3:\"bmd\";i:17;s:3:\"bnd\";i:18;s:3:\"bob\";i:19;s:3:\"brl\";i:20;s:3:\"bsd\";i:21;s:3:\"bwp\";i:22;s:3:\"byn\";i:23;s:3:\"bzd\";i:24;s:3:\"cad\";i:25;s:3:\"cdf\";i:26;s:3:\"chf\";i:27;s:3:\"clp\";i:28;s:3:\"cny\";i:29;s:3:\"cop\";i:30;s:3:\"crc\";i:31;s:3:\"cve\";i:32;s:3:\"czk\";i:33;s:3:\"djf\";i:34;s:3:\"dkk\";i:35;s:3:\"dop\";i:36;s:3:\"dzd\";i:37;s:3:\"egp\";i:38;s:3:\"etb\";i:39;s:3:\"eur\";i:40;s:3:\"fjd\";i:41;s:3:\"fkp\";i:42;s:3:\"gbp\";i:43;s:3:\"gel\";i:44;s:3:\"gip\";i:45;s:3:\"gmd\";i:46;s:3:\"gnf\";i:47;s:3:\"gtq\";i:48;s:3:\"gyd\";i:49;s:3:\"hkd\";i:50;s:3:\"hnl\";i:51;s:3:\"hrk\";i:52;s:3:\"htg\";i:53;s:3:\"huf\";i:54;s:3:\"idr\";i:55;s:3:\"ils\";i:56;s:3:\"inr\";i:57;s:3:\"isk\";i:58;s:3:\"jmd\";i:59;s:3:\"jpy\";i:60;s:3:\"kes\";i:61;s:3:\"kgs\";i:62;s:3:\"khr\";i:63;s:3:\"kmf\";i:64;s:3:\"krw\";i:65;s:3:\"kyd\";i:66;s:3:\"kzt\";i:67;s:3:\"lak\";i:68;s:3:\"lbp\";i:69;s:3:\"lkr\";i:70;s:3:\"lrd\";i:71;s:3:\"lsl\";i:72;s:3:\"mad\";i:73;s:3:\"mdl\";i:74;s:3:\"mga\";i:75;s:3:\"mkd\";i:76;s:3:\"mmk\";i:77;s:3:\"mnt\";i:78;s:3:\"mop\";i:79;s:3:\"mro\";i:80;s:3:\"mur\";i:81;s:3:\"mvr\";i:82;s:3:\"mwk\";i:83;s:3:\"mxn\";i:84;s:3:\"myr\";i:85;s:3:\"mzn\";i:86;s:3:\"nad\";i:87;s:3:\"ngn\";i:88;s:3:\"nio\";i:89;s:3:\"nok\";i:90;s:3:\"npr\";i:91;s:3:\"nzd\";i:92;s:3:\"pab\";i:93;s:3:\"pen\";i:94;s:3:\"pgk\";i:95;s:3:\"php\";i:96;s:3:\"pkr\";i:97;s:3:\"pln\";i:98;s:3:\"pyg\";i:99;s:3:\"qar\";i:100;s:3:\"ron\";i:101;s:3:\"rsd\";i:102;s:3:\"rub\";i:103;s:3:\"rwf\";i:104;s:3:\"sar\";i:105;s:3:\"sbd\";i:106;s:3:\"scr\";i:107;s:3:\"sek\";i:108;s:3:\"sgd\";i:109;s:3:\"shp\";i:110;s:3:\"sll\";i:111;s:3:\"sos\";i:112;s:3:\"srd\";i:113;s:3:\"std\";i:114;s:3:\"szl\";i:115;s:3:\"thb\";i:116;s:3:\"tjs\";i:117;s:3:\"top\";i:118;s:3:\"try\";i:119;s:3:\"ttd\";i:120;s:3:\"twd\";i:121;s:3:\"tzs\";i:122;s:3:\"uah\";i:123;s:3:\"ugx\";i:124;s:3:\"uyu\";i:125;s:3:\"uzs\";i:126;s:3:\"vnd\";i:127;s:3:\"vuv\";i:128;s:3:\"wst\";i:129;s:3:\"xaf\";i:130;s:3:\"xcd\";i:131;s:3:\"xof\";i:132;s:3:\"xpf\";i:133;s:3:\"yer\";i:134;s:3:\"zar\";i:135;s:3:\"zmw\";}}s:7:\"country\";s:2:\"US\";s:25:\"instant_deposits_eligible\";b:0;s:21:\"card_present_eligible\";b:1;s:16:\"business_profile\";a:5:{s:4:\"name\";s:10:\"The Collab\";s:3:\"url\";s:22:\"https://the-collab.com\";s:15:\"support_address\";a:0:{}s:13:\"support_email\";N;s:13:\"support_phone\";N;}s:8:\"branding\";a:4:{s:4:\"icon\";N;s:4:\"logo\";N;s:13:\"primary_color\";N;s:15:\"secondary_color\";N;}}s:7:\"expires\";d:1644939937;}','no'),(2253,'wcpay_multi_currency_cached_currencies','a:3:{s:10:\"currencies\";a:166:{s:3:\"AED\";d:3.6730070000000001328999132965691387653350830078125;s:3:\"AFN\";d:92.06774500000000216459739021956920623779296875;s:3:\"ALL\";d:107.2641009999999965884853736497461795806884765625;s:3:\"AMD\";d:480.01619799999997439954313449561595916748046875;s:3:\"ANG\";d:1.8023629999999999373727632701047696173191070556640625;s:3:\"AOA\";d:527.7485000000000354702933691442012786865234375;s:3:\"ARS\";d:106.3032529999999979963831719942390918731689453125;s:3:\"AUD\";d:1.401135000000000019326762412674725055694580078125;s:3:\"AWG\";d:1.8002499999999999058530875117867253720760345458984375;s:3:\"AZN\";d:1.6999999999999999555910790149937383830547332763671875;s:3:\"BAM\";d:1.7292009999999999880770928939455188810825347900390625;s:3:\"BBD\";i:2;s:3:\"BDT\";d:85.9792020000000007939888746477663516998291015625;s:3:\"BGN\";d:1.72175600000000006417621989385224878787994384765625;s:3:\"BHD\";d:0.37696600000000002328448545085848309099674224853515625;s:3:\"BIF\";d:1998.249317000000019106664694845676422119140625;s:3:\"BMD\";i:1;s:3:\"BND\";d:1.34788599999999991752019923296757042407989501953125;s:3:\"BOB\";d:6.8753209999999995716279954649507999420166015625;s:3:\"BRL\";d:5.21809999999999973852027324028313159942626953125;s:3:\"BSD\";i:1;s:3:\"BTC\";d:2.300000000000000001799775606325937360452371649444103240966796875E-5;s:3:\"BTN\";d:75.4472999999999984765963745303452014923095703125;s:3:\"BWP\";d:11.541515000000000412683220929466187953948974609375;s:3:\"BYN\";d:2.5886110000000002173692337237298488616943359375;s:3:\"BZD\";d:2.01578999999999997072563928668387234210968017578125;s:3:\"CAD\";d:1.272135000000000015774048733874224126338958740234375;s:3:\"CDF\";d:2003.087987000000111947883851826190948486328125;s:3:\"CHF\";d:0.92438600000000004097699957128497771918773651123046875;s:3:\"CLF\";d:0.029298999999999998655741961783860460855066776275634765625;s:3:\"CLP\";d:808.450000000000045474735088646411895751953125;s:3:\"CNH\";d:6.3461850000000001870148480520583689212799072265625;s:3:\"CNY\";d:6.34790000000000009805489753489382565021514892578125;s:3:\"COP\";d:3916.766677999999956227838993072509765625;s:3:\"CRC\";d:641.3264219999999795618350617587566375732421875;s:3:\"CUC\";i:1;s:3:\"CUP\";d:25.75;s:3:\"CVE\";d:97.0799999999999982946974341757595539093017578125;s:3:\"CZK\";d:21.5389890000000008285496733151376247406005859375;s:3:\"DJF\";d:178.039707999999990306605468504130840301513671875;s:3:\"DKK\";d:6.5599679999999995771986505133099853992462158203125;s:3:\"DOP\";d:57.224705000000000154614099301397800445556640625;s:3:\"DZD\";d:140.3195640000000139480107463896274566650390625;s:3:\"EGP\";d:15.7445000000000003836930773104541003704071044921875;s:3:\"ERN\";d:15.000009999999999621422830387018620967864990234375;s:3:\"ETB\";d:50.69428599999999818237483850680291652679443359375;s:3:\"EUR\";d:0.88138600000000000278532752417959272861480712890625;s:3:\"FJD\";d:2.146450000000000191135995919466949999332427978515625;s:3:\"FKP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"GBP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"GEL\";i:3;s:3:\"GGP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"GHS\";d:6.49532299999999995776533978641964495182037353515625;s:3:\"GIP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"GMD\";d:53.10000000000000142108547152020037174224853515625;s:3:\"GNF\";d:9009.687524999999368446879088878631591796875;s:3:\"GTQ\";d:7.69027399999999961011099003371782600879669189453125;s:3:\"GYD\";d:209.228466999999994868630892597138881683349609375;s:3:\"HKD\";d:7.803625000000000255795384873636066913604736328125;s:3:\"HNL\";d:24.62301599999999979218046064488589763641357421875;s:3:\"HRK\";d:6.6363000000000003097966327914036810398101806640625;s:3:\"HTG\";d:101.6219839999999976498656906187534332275390625;s:3:\"HUF\";d:313.16500899999999774081516079604625701904296875;s:3:\"IDR\";d:14269.399999999999636202119290828704833984375;s:3:\"ILS\";d:3.225410000000000110276232589967548847198486328125;s:3:\"IMP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"INR\";d:75.311498999999997749910107813775539398193359375;s:3:\"IQD\";d:1459.5800159999998868443071842193603515625;s:3:\"IRR\";i:42250;s:3:\"ISK\";d:124.4500000000000028421709430404007434844970703125;s:3:\"JEP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"JMD\";d:157.078406000000001085936673916876316070556640625;s:3:\"JOD\";d:0.70899999999999996358468479229486547410488128662109375;s:3:\"JPY\";d:115.6580000000000012505552149377763271331787109375;s:3:\"KES\";d:113.650000000000005684341886080801486968994140625;s:3:\"KGS\";d:84.7869490000000070040186983533203601837158203125;s:3:\"KHR\";d:4077.2516580000001340522430837154388427734375;s:3:\"KMF\";d:432.04994699999997465056367218494415283203125;s:3:\"KPW\";i:900;s:3:\"KRW\";d:1196.002788000000009560608305037021636962890625;s:3:\"KWD\";d:0.302590999999999998859578909105039201676845550537109375;s:3:\"KYD\";d:0.83337399999999994815169657158548943698406219482421875;s:3:\"KZT\";d:431.46934099999998579733073711395263671875;s:3:\"LAK\";d:11443.9647069999991799704730510711669921875;s:3:\"LBP\";d:1512.01867799999990893411450088024139404296875;s:3:\"LKR\";d:202.508138999999999896317603997886180877685546875;s:3:\"LRD\";d:153.599972000000008165443432517349720001220703125;s:3:\"LSL\";d:15.185266999999999626425051246769726276397705078125;s:3:\"LYD\";d:4.58966899999999977666220729588530957698822021484375;s:3:\"MAD\";d:9.3870349999999991297272572410292923450469970703125;s:3:\"MDL\";d:17.900384999999999990905052982270717620849609375;s:3:\"MGA\";d:3987.75592000000006009940989315509796142578125;s:3:\"MKD\";d:54.4753649999999964848029776476323604583740234375;s:3:\"MMK\";d:1778.162383999999974548700265586376190185546875;s:3:\"MNT\";d:2863.45558200000004944740794599056243896484375;s:3:\"MOP\";d:8.035258999999999929286786937154829502105712890625;s:3:\"MUR\";d:43.39999999999999857891452847979962825775146484375;s:3:\"MVR\";d:15.449999999999999289457264239899814128875732421875;s:3:\"MWK\";d:801.3171670000000403888407163321971893310546875;s:3:\"MXN\";d:20.3659999999999996589394868351519107818603515625;s:3:\"MYR\";d:4.18630000000000013216094885137863457202911376953125;s:3:\"MZN\";d:63.8299999999999982946974341757595539093017578125;s:3:\"NAD\";d:15.2200000000000006394884621840901672840118408203125;s:3:\"NGN\";d:415.76999999999998181010596454143524169921875;s:3:\"NIO\";d:35.457943999999997686245478689670562744140625;s:3:\"NOK\";d:8.896670000000000300133251585066318511962890625;s:3:\"NPR\";d:120.72075499999999692590790800750255584716796875;s:3:\"NZD\";d:1.511376999999999970469843901810236275196075439453125;s:3:\"OMR\";d:0.38495299999999998963318148526013828814029693603515625;s:3:\"PAB\";i:1;s:3:\"PEN\";d:3.75750399999999995515054251882247626781463623046875;s:3:\"PGK\";d:3.512108000000000007645439836778677999973297119140625;s:3:\"PHP\";d:51.28599899999999678357198718003928661346435546875;s:3:\"PKR\";d:175.435939999999988003764883615076541900634765625;s:3:\"PLN\";d:3.9758300000000001972466634470038115978240966796875;s:3:\"PYG\";d:6949.0059670000000551226548850536346435546875;s:3:\"QAR\";d:3.6410000000000000142108547152020037174224853515625;s:3:\"RON\";d:4.35649999999999959499064061674289405345916748046875;s:3:\"RSD\";d:103.6161000000000029785951483063399791717529296875;s:3:\"RUB\";d:75.43133299999999508145265281200408935546875;s:3:\"RWF\";d:1039.72978800000009869108907878398895263671875;s:3:\"SAR\";d:3.7519439999999999457713784067891538143157958984375;s:3:\"SBD\";d:8.08084099999999949659468256868422031402587890625;s:3:\"SCR\";d:12.96830800000000039062797441147267818450927734375;s:3:\"SDG\";d:443.5;s:3:\"SEK\";d:9.3150689999999993773371897987090051174163818359375;s:3:\"SGD\";d:1.34569500000000008554934538551606237888336181640625;s:3:\"SHP\";d:0.73861399999999999277378037731978110969066619873046875;s:3:\"SLL\";d:11516.05000400000062654726207256317138671875;s:3:\"SOS\";d:578.507401999999956387910060584545135498046875;s:3:\"SRD\";d:20.303000000000000824229573481716215610504150390625;s:3:\"SSP\";d:130.259999999999990905052982270717620849609375;s:3:\"STD\";d:21135.39050399999905494041740894317626953125;s:3:\"SVC\";d:8.7501599999999992718358043930493295192718505859375;s:3:\"SYP\";i:2512;s:3:\"SZL\";d:15.204105999999999454530552611686289310455322265625;s:3:\"THB\";d:32.36299999999999954525264911353588104248046875;s:3:\"TJS\";d:11.285470000000000112549969344399869441986083984375;s:3:\"TMT\";d:3.5;s:3:\"TND\";d:2.878750000000000142108547152020037174224853515625;s:3:\"TOP\";d:2.267790000000000194546601051115430891513824462890625;s:3:\"TRY\";d:13.65073699999999945475792628712952136993408203125;s:3:\"TTD\";d:6.7879389999999997229451764724217355251312255859375;s:3:\"TWD\";d:27.868500999999998413159119081683456897735595703125;s:3:\"TZS\";i:2313;s:3:\"UAH\";d:28.527004999999999057536115287803113460540771484375;s:3:\"UGX\";d:3516.15061800000012226519174873828887939453125;s:3:\"USD\";i:1;s:3:\"UYU\";d:43.07214599999999649071469320915639400482177734375;s:3:\"UZS\";d:10860.9373699999996460974216461181640625;s:3:\"VND\";d:22753.1297330000015790574252605438232421875;s:3:\"VUV\";d:113.9942070000000029494913178496062755584716796875;s:3:\"WST\";d:2.620931999999999817418938619084656238555908203125;s:3:\"XAF\";d:578.1515530000000353538780473172664642333984375;s:3:\"XAG\";d:0.04289400000000000157118762444952153600752353668212890625;s:3:\"XAU\";d:0.000540000000000000006904199434387692235759459435939788818359375;s:3:\"XCD\";d:2.702550000000000007815970093361102044582366943359375;s:3:\"XDR\";d:0.7124669999999999614459511576569639146327972412109375;s:3:\"XOF\";d:578.1515530000000353538780473172664642333984375;s:3:\"XPD\";d:0.0004440000000000000044721171210682086893939413130283355712890625;s:3:\"XPF\";d:105.1773699999999962528818286955356597900390625;s:3:\"XPT\";d:0.000981000000000000101085806392120503005571663379669189453125;s:3:\"YER\";d:250.249998000000005049514584243297576904296875;s:3:\"ZAR\";d:15.105850000000000221689333557151257991790771484375;s:3:\"ZMW\";d:18.78062299999999851252141525037586688995361328125;s:3:\"ZWL\";i:322;}s:7:\"expires\";i:1644950529;s:7:\"updated\";i:1644928929;}','no'),(2270,'wpins_block_notice','a:1:{s:25:\"essential_adons_elementor\";s:25:\"essential_adons_elementor\";}','yes'),(2271,'monitor_receive_notifications','1','yes'),(2259,'_wcpay_onboarding_stripe_connected','a:1:{s:26:\"is_existing_stripe_account\";b:1;}','yes'),(2264,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(2416,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(2417,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(2418,'theme_mods_shopstore','a:5:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:12:\"header_image\";s:77:\"https://the-collab.com/wp-content/uploads/2022/01/cropped-IMG_8926-Small.jpeg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:27;s:3:\"url\";s:77:\"https://the-collab.com/wp-content/uploads/2022/01/cropped-IMG_8926-Small.jpeg\";s:13:\"thumbnail_url\";s:77:\"https://the-collab.com/wp-content/uploads/2022/01/cropped-IMG_8926-Small.jpeg\";s:6:\"height\";i:350;s:5:\"width\";i:1000;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1643048100;s:4:\"data\";a:6:{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:6:\"footer\";a:0:{}s:18:\"front_page_sidebar\";a:0:{}s:21:\"replace_header_search\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}}}}','yes'),(2428,'_transient_shopstore_categories','1','yes'),(2435,'current_theme','Blockbase','yes'),(2436,'theme_switched','','yes'),(8802,'wp_calendar_block_has_published_posts','','yes'),(9364,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:19;}}','yes'),(9388,'elementor_pro_recaptcha_site_key','','yes'),(9389,'elementor_pro_recaptcha_secret_key','','yes'),(9390,'elementor_pro_recaptcha_v3_site_key','','yes'),(9391,'elementor_pro_recaptcha_v3_secret_key','','yes'),(9392,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),(9393,'elementor_pro_facebook_app_id','','yes'),(9394,'elementor_pro_mailchimp_api_key','','yes'),(9395,'elementor_validate_api_data','','yes'),(9396,'elementor_pro_drip_api_token','','yes'),(9397,'elementor_pro_activecampaign_api_key','','yes'),(9398,'elementor_pro_activecampaign_api_url','','yes'),(9399,'elementor_pro_getresponse_api_key','','yes'),(9400,'elementor_pro_convertkit_api_key','','yes'),(9401,'elementor_pro_mailerlite_api_key','','yes'),(9402,'elementor_typekit-kit-id','','yes'),(9403,'elementor_font_awesome_pro_kit_id','','yes'),(9404,'elementor_experiment-page-transitions','default','yes'),(9153,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9154,'_elementor_pro_installed_time','1644952951','yes'),(9155,'elementor_submissions_db_version','5','yes'),(9156,'elementor_connect_site_key','088f0a8f4498a86a898b17df6372e93e','yes'),(9157,'elementor_pro_license_key','ep-2wINRfyzaeWQWgdnjfad1644952856EYZpDoIVRBeL','yes'),(9158,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1650124729;s:5:\"value\";s:391:\"{\"expires\":\"2023-02-15 18:57:44\",\"payment_id\":11506303,\"subscription_id\":11506303,\"customer_name\":\"Ariel Axelrod-Hahn\",\"customer_email\":\"axelrodhahn@gmail.com\",\"price_id\":2,\"license_limit\":3,\"site_count\":1,\"activations_left\":2,\"success\":true,\"license\":\"valid\",\"item_id\":6630547,\"item_name\":\"Elementor Pro - Plus\",\"subscriptions\":\"enable\",\"checksum\":\"checksum\",\"features\":[\"editor_comments\"]}\";}','no'),(7436,'woocommerce_erasure_request_removes_subscription_data','no','no'),(7437,'woocommerce_anonymize_ended_subscriptions','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(7438,'woocommerce_myaccount_subscriptions_endpoint','subscriptions','yes'),(7439,'woocommerce_myaccount_view_subscription_endpoint','view-subscription','yes'),(7440,'woocommerce_myaccount_subscription_payment_method_endpoint','subscription-payment-method','yes'),(7072,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(7073,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(7074,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(9074,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:3895645099;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:16:\"JETPACK__VERSION\";i:4184070002;s:11:\"PHP_VERSION\";i:794370206;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:14:\"WP_CONTENT_DIR\";i:699754154;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:17:\"WP_POST_REVISIONS\";i:4261170317;}','yes'),(9075,'jetpack_sync_https_history_home_url','a:1:{i:0;s:5:\"https\";}','yes'),(9076,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(9077,'jetpack_sync_https_history_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(9080,'jetpack_callables_sync_checksum','a:37:{s:11:\"get_plugins\";i:756689025;s:24:\"get_plugins_action_links\";i:978109037;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:2544882373;s:16:\"hosting_provider\";i:769900095;s:12:\"is_fse_theme\";i:734881840;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:2544882373;s:26:\"main_network_site_wpcom_id\";i:1395730163;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:1963798191;s:10:\"post_types\";i:1051133324;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:5:\"roles\";i:3764461313;s:10:\"shortcodes\";i:1351551089;s:13:\"site_icon_url\";i:734881840;s:8:\"site_url\";i:2544882373;s:10:\"taxonomies\";i:276712064;s:13:\"theme_support\";i:4112726049;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:1819132959;s:10:\"wp_version\";i:1407263838;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:2903718415;s:14:\"active_modules\";i:783503909;s:24:\"available_jetpack_blocks\";i:3028384492;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),(13449,'analyst_cache','s:6:\"a:0:{}\";','yes'),(13460,'cdp_dismiss_perf_notice','1','yes'),(13456,'_cdp_preselections','a:1:{i:1;s:7:\"default\";}','yes'),(13451,'_cdp_review','a:2:{s:9:\"installed\";i:1649263584;s:5:\"users\";a:0:{}}','yes'),(13452,'_cdp_globals','a:4:{s:9:\"afterCopy\";s:1:\"1\";s:13:\"postConverter\";s:1:\"1\";s:6:\"others\";a:13:{s:17:\"cdp-content-pages\";s:4:\"true\";s:17:\"cdp-content-posts\";s:4:\"true\";s:18:\"cdp-content-custom\";s:4:\"true\";s:17:\"cdp-display-posts\";s:4:\"true\";s:16:\"cdp-display-edit\";s:4:\"true\";s:17:\"cdp-display-admin\";s:4:\"true\";s:16:\"cdp-display-bulk\";s:4:\"true\";s:21:\"cdp-display-gutenberg\";s:4:\"true\";s:19:\"cdp-references-post\";s:5:\"false\";s:19:\"cdp-references-edit\";s:5:\"false\";s:24:\"cdp-premium-hide-tooltip\";s:5:\"false\";s:18:\"cdp-premium-import\";s:5:\"false\";s:20:\"cdp-menu-in-settings\";s:5:\"false\";}s:5:\"roles\";a:8:{s:13:\"administrator\";s:4:\"true\";s:6:\"editor\";s:5:\"false\";s:6:\"author\";s:5:\"false\";s:11:\"contributor\";s:5:\"false\";s:10:\"subscriber\";s:5:\"false\";s:8:\"customer\";s:5:\"false\";s:12:\"shop_manager\";s:5:\"false\";s:16:\"tutor_instructor\";s:5:\"false\";}}','yes'),(13453,'_cdp_profiles','a:1:{s:7:\"default\";a:25:{s:5:\"names\";a:4:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:10:\"#[Counter]\";s:6:\"format\";s:1:\"1\";s:7:\"display\";s:7:\"Default\";}s:5:\"title\";s:4:\"true\";s:4:\"date\";s:5:\"false\";s:6:\"status\";s:5:\"false\";s:4:\"slug\";s:4:\"true\";s:7:\"excerpt\";s:4:\"true\";s:7:\"content\";s:4:\"true\";s:7:\"f_image\";s:4:\"true\";s:8:\"template\";s:4:\"true\";s:6:\"format\";s:4:\"true\";s:6:\"author\";s:4:\"true\";s:8:\"password\";s:4:\"true\";s:11:\"attachments\";s:5:\"false\";s:8:\"children\";s:5:\"false\";s:8:\"comments\";s:5:\"false\";s:10:\"menu_order\";s:4:\"true\";s:8:\"category\";s:4:\"true\";s:8:\"post_tag\";s:4:\"true\";s:8:\"taxonomy\";s:4:\"true\";s:8:\"nav_menu\";s:4:\"true\";s:13:\"link_category\";s:4:\"true\";s:12:\"all_metadata\";s:5:\"false\";s:3:\"woo\";s:5:\"false\";s:9:\"usmplugin\";s:5:\"false\";s:5:\"yoast\";s:5:\"false\";}}','yes'),(13454,'_cdp_default_setup','1','yes'),(13459,'cdp_copy_logs_times','a:3:{i:0;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.0267870426177978515625;s:6:\"perOne\";d:0.0267870426177978515625;s:4:\"data\";i:1649264387;s:6:\"memory\";i:47143984;s:4:\"peak\";i:48758784;}i:1;a:6:{s:6:\"amount\";s:1:\"3\";s:4:\"time\";d:0.0405280590057373046875;s:6:\"perOne\";d:0.01350935300191243547407449199226903147064149379730224609375;s:4:\"data\";i:1649263646;s:6:\"memory\";i:47153568;s:4:\"peak\";i:48758784;}i:2;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.028233051300048828125;s:6:\"perOne\";d:0.028233051300048828125;s:4:\"data\";i:1649263632;s:6:\"memory\";i:47150472;s:4:\"peak\";i:48758784;}}','yes'),(13462,'recovery_mode_email_last_sent','1649263814','yes'),(13471,'_cdp_no_intro','a:1:{i:0;i:1;}','yes');
/*!40000 ALTER TABLE `wpob_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_options` with 536 row(s)
--

--
-- Table structure for table `wpob_users`
--

DROP TABLE IF EXISTS `wpob_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_users`
--

LOCK TABLES `wpob_users` WRITE;
/*!40000 ALTER TABLE `wpob_users` DISABLE KEYS */;
INSERT INTO `wpob_users` VALUES (1,'axelrodhahn','$P$BQHZ6EXoIt2LGhk9vFskaS5VxhvTUb.','axelrodhahn','ariel@axelrodlmhc.com','https://the-collab.com','2022-01-17 15:40:57','',0,'Ariel Axelrod, LMHC');
/*!40000 ALTER TABLE `wpob_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_users` with 1 row(s)
--

--
-- Table structure for table `wpob_postmeta`
--

DROP TABLE IF EXISTS `wpob_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3733 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_postmeta`
--

LOCK TABLES `wpob_postmeta` WRITE;
/*!40000 ALTER TABLE `wpob_postmeta` DISABLE KEYS */;
INSERT INTO `wpob_postmeta` VALUES (1999,309,'_wp_attached_file','2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf'),(2000,309,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:59:\"Patient-Bill-of-Rights-and-Patient-Responsibilities-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"Patient-Bill-of-Rights-and-Patient-Responsibilities-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"Patient-Bill-of-Rights-and-Patient-Responsibilities-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"Patient-Bill-of-Rights-and-Patient-Responsibilities-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10,16,'_wp_attached_file','2022/01/467131_299797613426044_221850757_o_299797613426044.jpg'),(11,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1529;s:4:\"file\";s:62:\"2022/01/467131_299797613426044_221850757_o_299797613426044.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-600x448.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"467131_299797613426044_221850757_o_299797613426044-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-768x573.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:64:\"467131_299797613426044_221850757_o_299797613426044-1536x1147.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:64:\"467131_299797613426044_221850757_o_299797613426044-1568x1171.jpg\";s:5:\"width\";i:1568;s:6:\"height\";i:1171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-600x448.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"467131_299797613426044_221850757_o_299797613426044-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(550,130,'_wp_page_template','elementor_canvas'),(551,130,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(549,130,'_elementor_edit_mode','builder'),(18,18,'_tutor_course_id_for_lesson','15'),(19,19,'tutor_quiz_option','a:9:{s:10:\"time_limit\";a:2:{s:10:\"time_value\";s:1:\"0\";s:9:\"time_type\";s:7:\"minutes\";}s:13:\"feedback_mode\";s:7:\"default\";s:16:\"attempts_allowed\";s:1:\"5\";s:13:\"passing_grade\";s:2:\"80\";s:24:\"max_questions_for_answer\";s:2:\"10\";s:20:\"question_layout_view\";s:0:\"\";s:15:\"questions_order\";s:4:\"rand\";s:29:\"short_answer_characters_limit\";s:3:\"200\";s:34:\"open_ended_answer_characters_limit\";s:3:\"500\";}'),(548,130,'_elementor_version','3.5.5'),(48,34,'_edit_lock','1649262874:1'),(547,130,'_elementor_template_type','wp-page'),(25,23,'_elementor_edit_mode','builder'),(26,23,'_elementor_template_type','kit'),(1997,308,'_wp_attached_file','2022/04/Notice-of-Privacy-Practices.pdf'),(1998,308,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"Notice-of-Privacy-Practices-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Notice-of-Privacy-Practices-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Notice-of-Privacy-Practices-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Notice-of-Privacy-Practices-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(447,111,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(41,29,'_edit_lock','1649453297:1'),(42,29,'_last_editor_used_jetpack','block-editor'),(446,111,'_elementor_page_assets','a:0:{}'),(49,34,'_last_editor_used_jetpack','block-editor'),(50,37,'_edit_lock','1649454428:1'),(51,37,'_last_editor_used_jetpack','block-editor'),(52,39,'_edit_lock','1649455508:1'),(53,39,'_last_editor_used_jetpack','block-editor'),(60,29,'_edit_last','1'),(55,39,'_elementor_template_type','wp-page'),(56,39,'_elementor_version','3.6.2'),(58,29,'_elementor_template_type','wp-page'),(59,29,'_elementor_version','3.6.2'),(1952,302,'_elementor_page_assets','a:0:{}'),(1951,302,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264,\"draft\":true},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"}]},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"53398e30\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1950,302,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1949,302,'_wp_page_template','elementor_canvas'),(1947,302,'_elementor_version','3.6.2'),(1948,302,'_elementor_pro_version','3.6.4'),(1946,302,'_elementor_template_type','wp-page'),(1922,134,'_wp_old_date','2022-02-17'),(1921,140,'_wp_old_date','2022-02-17'),(1920,135,'_wp_old_date','2022-02-17'),(1919,133,'_wp_old_date','2022-02-17'),(98,29,'_elementor_edit_mode','builder'),(151,64,'_elementor_page_assets','a:0:{}'),(126,29,'_wp_page_template','elementor_canvas'),(127,29,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":30.199999999999999289457264239899814128875732421875,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(105,23,'_edit_lock','1649450710:1'),(106,57,'_elementor_edit_mode','builder'),(107,57,'_elementor_template_type','kit'),(123,60,'_elementor_template_type','wp-page'),(124,60,'_elementor_version','3.5.5'),(125,60,'_elementor_edit_mode','builder'),(109,23,'_wp_page_template','default'),(110,23,'_elementor_page_settings','a:51:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"01c5958\";s:5:\"title\";s:5:\"Hover\";s:5:\"color\";s:7:\"#535C1E\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";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:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:4:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"body_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=primary\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:10:\"body_color\";s:7:\"#000000\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:15:\"Times New Roman\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:25:\"mobile_browser_background\";s:7:\"#FEFAE0\";}'),(111,23,'_elementor_data','[]'),(112,58,'_elementor_edit_mode','builder'),(113,58,'_elementor_template_type','kit'),(120,59,'_elementor_template_type','wp-page'),(121,59,'_elementor_version','3.5.5'),(122,59,'_elementor_edit_mode','builder'),(115,58,'_wp_page_template','default'),(116,58,'_elementor_page_settings','a:12:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(117,58,'_elementor_data','[]'),(118,23,'_elementor_page_assets','a:0:{}'),(119,23,'_elementor_version','3.6.2'),(146,64,'_elementor_template_type','wp-page'),(147,64,'_elementor_version','3.5.5'),(148,64,'_elementor_edit_mode','builder'),(149,64,'_wp_page_template','default'),(150,64,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"wp-block-column\\\">About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(128,61,'_elementor_template_type','wp-page'),(129,61,'_elementor_version','3.5.5'),(130,61,'_elementor_edit_mode','builder'),(131,61,'_wp_page_template','default'),(132,61,'_elementor_data','[{\"id\":\"446e3594\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"42155d37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4557cfb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\"><span style=\\\"color: #333333;\\\"><!-- wp:columns --><\\/span>\\n<div class=\\\"wp-block-columns\\\"><span style=\\\"color: #333333;\\\"><!-- wp:column {\\\"width\\\":\\\"100%\\\"} --><\\/span>\\n<div class=\\\"wp-block-column\\\" style=\\\"flex-basis: 100%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:paragraph {\\\"align\\\":\\\"left\\\"} --><\\/span>\\n<p class=\\\"has-text-align-left\\\">\\u00a0<\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:columns --><!-- wp:navigation {\\\"ref\\\":49,\\\"layout\\\":{\\\"type\\\":\\\"flex\\\",\\\"justifyContent\\\":\\\"right\\\"}} \\/--><\\/span><\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:paragraph --><\\/span><\\/p>\\n<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\">\\u00a0<\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\"><span style=\\\"color: #333333;\\\"><!-- wp:columns --><\\/span>\\n<div class=\\\"wp-block-columns\\\"><span style=\\\"color: #333333;\\\"><!-- wp:column {\\\"width\\\":\\\"33.33%\\\"} --><\\/span>\\n<h2 class=\\\"wp-block-column\\\" style=\\\"flex-basis: 33.33%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:verse -->About the Practice<!-- \\/wp:verse --><\\/span><\\/h2>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><!-- wp:column {\\\"width\\\":\\\"66.66%\\\"} --><\\/span>\\n<div class=\\\"wp-block-column\\\" style=\\\"flex-basis: 66.66%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:paragraph --><\\/span>\\n<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><!-- wp:paragraph --><\\/span>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:columns --><\\/span><\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:paragraph --><\\/span><\\/p>\\n<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#BEC6BA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(133,29,'_elementor_page_assets','a:0:{}'),(134,62,'_elementor_template_type','wp-page'),(135,62,'_elementor_version','3.5.5'),(136,62,'_elementor_edit_mode','builder'),(137,62,'_wp_page_template','default'),(138,62,'_elementor_data','[{\"id\":\"446e3594\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"42155d37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4557cfb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\"><span style=\\\"color: #333333;\\\"><!-- wp:columns --><\\/span>\\n<div class=\\\"wp-block-columns\\\"><span style=\\\"color: #333333;\\\"><!-- wp:column {\\\"width\\\":\\\"100%\\\"} --><\\/span>\\n<div class=\\\"wp-block-column\\\" style=\\\"flex-basis: 100%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:paragraph {\\\"align\\\":\\\"left\\\"} --><\\/span>\\n<p class=\\\"has-text-align-left\\\">\\u00a0<\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:columns --><!-- wp:navigation {\\\"ref\\\":49,\\\"layout\\\":{\\\"type\\\":\\\"flex\\\",\\\"justifyContent\\\":\\\"right\\\"}} \\/--><\\/span><\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:paragraph --><\\/span><\\/p>\\n<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\">\\u00a0<\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\"><span style=\\\"color: #333333;\\\"><!-- wp:columns --><\\/span>\\n<div class=\\\"wp-block-columns\\\"><span style=\\\"color: #333333;\\\"><!-- wp:column {\\\"width\\\":\\\"33.33%\\\"} --><\\/span>\\n<h2 class=\\\"wp-block-column\\\" style=\\\"flex-basis: 33.33%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:verse -->About the Practice<!-- \\/wp:verse --><\\/span><\\/h2>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><!-- wp:column {\\\"width\\\":\\\"66.66%\\\"} --><\\/span>\\n<div class=\\\"wp-block-column\\\" style=\\\"flex-basis: 66.66%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:paragraph --><\\/span>\\n<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><!-- wp:paragraph --><\\/span>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:columns --><\\/span><\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:paragraph --><\\/span><\\/p>\\n<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#BEC6BA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(139,62,'_elementor_page_assets','a:0:{}'),(140,63,'_elementor_template_type','wp-page'),(141,63,'_elementor_version','3.5.5'),(142,63,'_elementor_edit_mode','builder'),(143,63,'_wp_page_template','default'),(144,63,'_elementor_data','[{\"id\":\"446e3594\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"42155d37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4557cfb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\"><span style=\\\"color: #333333;\\\"><!-- wp:columns --><\\/span>\\n<div class=\\\"wp-block-columns\\\"><span style=\\\"color: #333333;\\\"><!-- wp:column {\\\"width\\\":\\\"100%\\\"} --><\\/span>\\n<div class=\\\"wp-block-column\\\" style=\\\"flex-basis: 100%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:paragraph {\\\"align\\\":\\\"left\\\"} --><\\/span>\\n<p class=\\\"has-text-align-left\\\">\\u00a0<\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:columns --><!-- wp:navigation {\\\"ref\\\":49,\\\"layout\\\":{\\\"type\\\":\\\"flex\\\",\\\"justifyContent\\\":\\\"right\\\"}} \\/--><\\/span><\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:paragraph --><\\/span><\\/p>\\n<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\">\\u00a0<\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:group --><\\/span><\\/p>\\n<div class=\\\"wp-block-group\\\"><span style=\\\"color: #333333;\\\"><!-- wp:columns --><\\/span>\\n<div class=\\\"wp-block-columns\\\"><span style=\\\"color: #333333;\\\"><!-- wp:column {\\\"width\\\":\\\"33.33%\\\"} --><\\/span>\\n<h2 class=\\\"wp-block-column\\\" style=\\\"flex-basis: 33.33%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:verse -->About the Practice<!-- \\/wp:verse --><\\/span><\\/h2>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><!-- wp:column {\\\"width\\\":\\\"66.66%\\\"} --><\\/span>\\n<div class=\\\"wp-block-column\\\" style=\\\"flex-basis: 66.66%;\\\"><span style=\\\"color: #333333;\\\"><!-- wp:paragraph --><\\/span>\\n<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><!-- wp:paragraph --><\\/span>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:column --><\\/span><\\/div>\\n<span style=\\\"color: #333333;\\\"><!-- \\/wp:columns --><\\/span><\\/div>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:group --><!-- wp:paragraph --><\\/span><\\/p>\\n<p>\\u00a0<\\/p>\\n<p><span style=\\\"color: #333333;\\\"><!-- \\/wp:paragraph --><\\/span><\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#BEC6BA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(145,63,'_elementor_page_assets','a:0:{}'),(202,72,'_elementor_version','3.5.5'),(203,72,'_elementor_edit_mode','builder'),(204,72,'_wp_page_template','default'),(205,72,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(201,72,'_elementor_template_type','wp-page'),(160,66,'_elementor_edit_mode','builder'),(161,66,'_elementor_template_type','kit'),(162,66,'_wp_page_template','default'),(163,66,'_elementor_page_settings','a:12:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"3b450aa\";s:5:\"title\";s:11:\"Global text\";s:5:\"color\";s:7:\"#4B4C4C\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:5:\"title\";s:14:\"Global Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(164,66,'_elementor_data','[]'),(165,66,'_elementor_page_assets','a:0:{}'),(166,66,'_elementor_version','3.5.5'),(168,67,'_elementor_edit_mode','builder'),(169,67,'_elementor_template_type','kit'),(170,67,'_wp_page_template','default'),(171,67,'_elementor_page_settings','a:16:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:25:\"globals/colors?id=3b450aa\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}}'),(172,67,'_elementor_data','[]'),(173,67,'_elementor_page_assets','a:0:{}'),(174,67,'_elementor_version','3.5.5'),(175,68,'_elementor_edit_mode','builder'),(176,68,'_elementor_template_type','kit'),(177,68,'_wp_page_template','default'),(178,68,'_elementor_page_settings','a:27:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h1_color\";s:7:\"#4B4C4C\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}}'),(179,68,'_elementor_data','[]'),(180,68,'_elementor_page_assets','a:0:{}'),(181,68,'_elementor_version','3.5.5'),(182,69,'_elementor_edit_mode','builder'),(183,69,'_elementor_template_type','kit'),(184,69,'_wp_page_template','default'),(185,69,'_elementor_page_settings','a:41:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}}'),(186,69,'_elementor_data','[]'),(187,69,'_elementor_page_assets','a:0:{}'),(188,69,'_elementor_version','3.5.5'),(3238,463,'_elementor_template_type','kit'),(3239,463,'_wp_page_template','default'),(3240,463,'_elementor_page_settings','a:44:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";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:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(189,70,'_elementor_template_type','wp-page'),(190,70,'_elementor_version','3.5.5'),(191,70,'_elementor_edit_mode','builder'),(192,70,'_wp_page_template','default'),(193,70,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"wp-block-column\\\">About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(194,70,'_elementor_page_assets','a:0:{}'),(195,71,'_elementor_template_type','wp-page'),(196,71,'_elementor_version','3.5.5'),(197,71,'_elementor_edit_mode','builder'),(198,71,'_wp_page_template','default'),(199,71,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"wp-block-column\\\">About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(200,71,'_elementor_page_assets','a:0:{}'),(206,72,'_elementor_page_assets','a:0:{}'),(227,76,'_elementor_version','3.5.5'),(228,76,'_elementor_edit_mode','builder'),(229,76,'_wp_page_template','default'),(230,76,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false}]'),(226,76,'_elementor_template_type','wp-page'),(214,74,'_elementor_template_type','wp-page'),(215,74,'_elementor_version','3.5.5'),(216,74,'_elementor_edit_mode','builder'),(217,74,'_wp_page_template','default'),(218,74,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(219,74,'_elementor_page_assets','a:0:{}'),(220,75,'_elementor_template_type','wp-page'),(221,75,'_elementor_version','3.5.5'),(222,75,'_elementor_edit_mode','builder'),(223,75,'_wp_page_template','default'),(224,75,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(225,75,'_elementor_page_assets','a:0:{}'),(231,76,'_elementor_page_assets','a:0:{}'),(235,78,'_elementor_version','3.5.5'),(234,78,'_elementor_template_type','wp-page'),(236,78,'_elementor_edit_mode','builder'),(237,78,'_wp_page_template','default'),(238,78,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false}]'),(239,78,'_elementor_page_assets','a:0:{}'),(240,79,'_elementor_template_type','wp-page'),(241,79,'_elementor_version','3.5.5'),(242,79,'_elementor_edit_mode','builder'),(243,79,'_wp_page_template','default'),(244,79,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false}]'),(245,79,'_elementor_page_assets','a:0:{}'),(246,29,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(247,80,'_elementor_template_type','wp-page'),(248,80,'_elementor_version','3.5.5'),(249,80,'_elementor_edit_mode','builder'),(250,80,'_wp_page_template','default'),(251,80,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(252,80,'_elementor_page_assets','a:0:{}'),(253,80,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(254,29,'_elementor_pro_version','3.6.4'),(401,106,'_elementor_template_type','wp-page'),(400,105,'_elementor_pro_version','3.6.2'),(409,107,'_elementor_template_type','wp-page'),(410,107,'_elementor_version','3.5.5'),(411,107,'_elementor_edit_mode','builder'),(412,107,'_wp_page_template','elementor_theme'),(413,107,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(396,105,'_wp_page_template','default'),(397,105,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(398,105,'_elementor_page_assets','a:0:{}'),(399,105,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(373,23,'_elementor_pro_version','3.6.4'),(1312,227,'_elementor_edit_mode','builder'),(1313,227,'_elementor_template_type','page'),(1314,227,'_elementor_version','3.6.2'),(1315,227,'_elementor_pro_version','3.6.4'),(1316,227,'_wp_page_template','elementor_canvas'),(1317,227,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1318,227,'_elementor_data','[{\"id\":\"7c45144a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60b3ae0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b4ef49\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"597984c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69d89f47\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"29ed6b15\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"242b0163\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"7064b9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"1a99ac0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"44ba80e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b59c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"50b899e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"536514ee\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1a1e6cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bb890cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2f048ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ae42bb6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3be317\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(414,107,'_elementor_page_assets','a:0:{}'),(415,107,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(296,88,'_elementor_is_screenshot','1'),(297,88,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_85_2022-02-15-19-33-01_2520b61e.png'),(416,107,'_elementor_pro_version','3.6.2'),(1301,225,'_elementor_edit_mode','builder'),(1386,236,'_elementor_page_assets','a:0:{}'),(1310,225,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1309,225,'_wp_page_template','elementor_canvas'),(1308,226,'_elementor_pro_version','3.6.4'),(1302,225,'_elementor_template_type','page'),(1303,225,'_elementor_version','3.6.2'),(1304,225,'_elementor_pro_version','3.6.4'),(1305,226,'_elementor_edit_mode','builder'),(1306,226,'_elementor_template_type','page'),(1307,226,'_elementor_version','3.6.2'),(393,105,'_elementor_template_type','wp-page'),(394,105,'_elementor_version','3.5.5'),(1319,225,'_elementor_page_assets','a:0:{}'),(348,97,'_elementor_is_screenshot','1'),(349,97,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_93_2022-02-15-19-42-25_674acb7d.png'),(1311,225,'_elementor_data','[{\"id\":\"7c45144a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60b3ae0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b4ef49\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"597984c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69d89f47\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"29ed6b15\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"242b0163\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"7064b9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"1a99ac0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"44ba80e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b59c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"50b899e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"536514ee\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1a1e6cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bb890cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2f048ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ae42bb6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3be317\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(395,105,'_elementor_edit_mode','builder'),(365,99,'_elementor_edit_mode','builder'),(366,99,'_elementor_template_type','kit'),(367,99,'_wp_page_template','default'),(368,99,'_elementor_page_settings','a:48:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}}'),(369,99,'_elementor_data','[]'),(370,99,'_elementor_page_assets','a:0:{}'),(371,99,'_elementor_version','3.5.5'),(402,106,'_elementor_version','3.5.5'),(403,106,'_elementor_edit_mode','builder'),(404,106,'_wp_page_template','default'),(405,106,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(406,106,'_elementor_page_assets','a:0:{}'),(407,106,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(408,106,'_elementor_pro_version','3.6.2'),(444,111,'_wp_page_template','elementor_theme'),(445,111,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(443,111,'_elementor_edit_mode','builder'),(442,111,'_elementor_version','3.5.5'),(441,111,'_elementor_template_type','wp-page'),(425,109,'_elementor_template_type','wp-page'),(426,109,'_elementor_version','3.5.5'),(427,109,'_elementor_edit_mode','builder'),(428,109,'_wp_page_template','elementor_theme'),(429,109,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(430,109,'_elementor_page_assets','a:0:{}'),(431,109,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(432,109,'_elementor_pro_version','3.6.2'),(433,110,'_elementor_template_type','wp-page'),(434,110,'_elementor_version','3.5.5'),(435,110,'_elementor_edit_mode','builder'),(436,110,'_wp_page_template','elementor_theme'),(437,110,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(438,110,'_elementor_page_assets','a:0:{}'),(439,110,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(440,110,'_elementor_pro_version','3.6.2'),(448,111,'_elementor_pro_version','3.6.2'),(507,125,'_wp_page_template','default'),(508,125,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(504,125,'_elementor_template_type','wp-page'),(505,125,'_elementor_version','3.5.5'),(506,125,'_elementor_edit_mode','builder'),(488,123,'_elementor_template_type','wp-page'),(489,123,'_elementor_version','3.5.5'),(490,123,'_elementor_edit_mode','builder'),(491,123,'_wp_page_template','elementor_theme'),(492,123,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(493,123,'_elementor_page_assets','a:0:{}'),(494,123,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(495,123,'_elementor_pro_version','3.6.2'),(496,124,'_elementor_template_type','wp-page'),(497,124,'_elementor_version','3.5.5'),(498,124,'_elementor_edit_mode','builder'),(499,124,'_wp_page_template','elementor_theme'),(500,124,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(501,124,'_elementor_page_assets','a:0:{}'),(502,124,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(503,124,'_elementor_pro_version','3.6.2'),(509,125,'_elementor_page_assets','a:0:{}'),(510,125,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(511,125,'_elementor_pro_version','3.6.2'),(522,127,'_elementor_template_type','wp-page'),(523,127,'_elementor_version','3.5.5'),(524,127,'_elementor_edit_mode','builder'),(544,129,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(543,129,'_elementor_page_assets','a:0:{}'),(541,129,'_wp_page_template','elementor_canvas'),(542,129,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(540,129,'_elementor_edit_mode','builder'),(766,159,'_elementor_template_type','wp-page'),(538,129,'_elementor_template_type','wp-page'),(539,129,'_elementor_version','3.5.5'),(525,127,'_wp_page_template','default'),(526,127,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(527,127,'_elementor_page_assets','a:0:{}'),(528,127,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(529,127,'_elementor_pro_version','3.6.2'),(530,128,'_elementor_template_type','wp-page'),(531,128,'_elementor_version','3.5.5'),(532,128,'_elementor_edit_mode','builder'),(533,128,'_wp_page_template','default'),(534,128,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(535,128,'_elementor_page_assets','a:0:{}'),(536,128,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(537,128,'_elementor_pro_version','3.6.2'),(545,129,'_elementor_pro_version','3.6.2'),(624,140,'_menu_item_object','page'),(625,140,'_menu_item_target',''),(626,140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(552,130,'_elementor_page_assets','a:0:{}'),(553,130,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(554,130,'_elementor_pro_version','3.6.2'),(556,131,'_elementor_template_type','wp-page'),(557,131,'_elementor_version','3.5.5'),(558,131,'_elementor_edit_mode','builder'),(559,131,'_wp_page_template','elementor_canvas'),(560,131,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(561,131,'_elementor_page_assets','a:0:{}'),(562,131,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(563,131,'_elementor_pro_version','3.6.2'),(565,132,'_elementor_template_type','wp-page'),(566,132,'_elementor_version','3.5.5'),(567,132,'_elementor_edit_mode','builder'),(568,132,'_wp_page_template','elementor_canvas'),(569,132,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(570,132,'_elementor_page_assets','a:0:{}'),(571,132,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(572,132,'_elementor_pro_version','3.6.2'),(575,133,'_menu_item_type','post_type'),(576,133,'_menu_item_menu_item_parent','0'),(577,133,'_menu_item_object_id','29'),(578,133,'_menu_item_object','page'),(579,133,'_menu_item_target',''),(580,133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(581,133,'_menu_item_xfn',''),(582,133,'_menu_item_url',''),(623,140,'_menu_item_object_id','138'),(584,134,'_menu_item_type','post_type'),(585,134,'_menu_item_menu_item_parent','0'),(586,134,'_menu_item_object_id','39'),(587,134,'_menu_item_object','page'),(588,134,'_menu_item_target',''),(589,134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(590,134,'_menu_item_xfn',''),(591,134,'_menu_item_url',''),(620,138,'_edit_lock','1649455189:1'),(593,135,'_menu_item_type','post_type'),(594,135,'_menu_item_menu_item_parent','0'),(595,135,'_menu_item_object_id','37'),(596,135,'_menu_item_object','page'),(597,135,'_menu_item_target',''),(598,135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(599,135,'_menu_item_xfn',''),(600,135,'_menu_item_url',''),(621,140,'_menu_item_type','post_type'),(1926,37,'_elementor_pro_version','3.6.4'),(1925,37,'_elementor_version','3.6.2'),(1924,37,'_elementor_template_type','wp-page'),(1923,37,'_elementor_edit_mode','builder'),(622,140,'_menu_item_menu_item_parent','0'),(649,145,'_wp_page_template','elementor_canvas'),(650,145,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61510d8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5665906\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer_color_menu_item_hover\":\"#61CE70\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(646,145,'_elementor_template_type','wp-page'),(673,148,'_elementor_template_type','wp-page'),(674,148,'_elementor_version','3.5.5'),(675,148,'_elementor_edit_mode','builder'),(676,148,'_wp_page_template','elementor_canvas'),(677,148,'_elementor_data','[{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(627,140,'_menu_item_xfn',''),(628,140,'_menu_item_url',''),(630,143,'_elementor_template_type','wp-page'),(631,143,'_elementor_version','3.5.5'),(632,143,'_elementor_edit_mode','builder'),(647,145,'_elementor_version','3.5.5'),(648,145,'_elementor_edit_mode','builder'),(633,143,'_wp_page_template','elementor_canvas'),(634,143,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(635,143,'_elementor_page_assets','a:0:{}'),(636,143,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(637,143,'_elementor_pro_version','3.6.2'),(638,144,'_elementor_template_type','wp-page'),(639,144,'_elementor_version','3.5.5'),(640,144,'_elementor_edit_mode','builder'),(641,144,'_wp_page_template','elementor_canvas'),(642,144,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(643,144,'_elementor_page_assets','a:0:{}'),(644,144,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(645,144,'_elementor_pro_version','3.6.2'),(651,145,'_elementor_page_assets','a:0:{}'),(652,145,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(653,145,'_elementor_pro_version','3.6.2'),(655,146,'_elementor_template_type','wp-page'),(656,146,'_elementor_version','3.5.5'),(657,146,'_elementor_edit_mode','builder'),(658,146,'_wp_page_template','elementor_canvas'),(659,146,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61510d8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5665906\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer_color_menu_item_hover\":\"#61CE70\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(660,146,'_elementor_page_assets','a:0:{}'),(661,146,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(662,146,'_elementor_pro_version','3.6.2'),(664,147,'_elementor_template_type','wp-page'),(665,147,'_elementor_version','3.5.5'),(666,147,'_elementor_edit_mode','builder'),(667,147,'_wp_page_template','elementor_canvas'),(668,147,'_elementor_data','[{\"id\":\"c98349d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7776d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61510d8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c040477\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3f3ea12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"d094330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5665906\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"731955f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer_color_menu_item_hover\":\"#61CE70\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(669,147,'_elementor_page_assets','a:0:{}'),(670,147,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(671,147,'_elementor_pro_version','3.6.2'),(724,154,'_elementor_edit_mode','builder'),(725,154,'_wp_page_template','elementor_canvas'),(726,154,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(678,148,'_elementor_page_assets','a:0:{}'),(679,148,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(680,148,'_elementor_pro_version','3.6.2'),(741,156,'_wp_page_template','elementor_canvas'),(722,154,'_elementor_template_type','wp-page'),(723,154,'_elementor_version','3.5.5'),(709,152,'_wp_page_template','elementor_canvas'),(710,152,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(708,152,'_elementor_edit_mode','builder'),(706,152,'_elementor_template_type','wp-page'),(707,152,'_elementor_version','3.5.5'),(690,150,'_elementor_template_type','wp-page'),(691,150,'_elementor_version','3.5.5'),(692,150,'_elementor_edit_mode','builder'),(693,150,'_wp_page_template','elementor_canvas'),(694,150,'_elementor_data','[{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(695,150,'_elementor_page_assets','a:0:{}'),(696,150,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(697,150,'_elementor_pro_version','3.6.2'),(698,151,'_elementor_template_type','wp-page'),(699,151,'_elementor_version','3.5.5'),(700,151,'_elementor_edit_mode','builder'),(701,151,'_wp_page_template','elementor_canvas'),(702,151,'_elementor_data','[{\"id\":\"32e81a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a80c22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b601e9f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(703,151,'_elementor_page_assets','a:0:{}'),(704,151,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(705,151,'_elementor_pro_version','3.6.2'),(711,152,'_elementor_page_assets','a:0:{}'),(712,152,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(713,152,'_elementor_pro_version','3.6.2'),(742,156,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(740,156,'_elementor_edit_mode','builder'),(738,156,'_elementor_template_type','wp-page'),(739,156,'_elementor_version','3.5.5'),(937,178,'_elementor_version','3.5.5'),(938,178,'_elementor_edit_mode','builder'),(939,178,'_wp_page_template','elementor_canvas'),(940,178,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(822,165,'_elementor_template_type','wp-page'),(3237,463,'_elementor_edit_mode','builder'),(727,154,'_elementor_page_assets','a:0:{}'),(728,154,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(729,154,'_elementor_pro_version','3.6.2'),(730,155,'_elementor_template_type','wp-page'),(731,155,'_elementor_version','3.5.5'),(732,155,'_elementor_edit_mode','builder'),(733,155,'_wp_page_template','elementor_canvas'),(734,155,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(735,155,'_elementor_page_assets','a:0:{}'),(736,155,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(737,155,'_elementor_pro_version','3.6.2'),(743,156,'_elementor_page_assets','a:0:{}'),(744,156,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(745,156,'_elementor_pro_version','3.6.2'),(831,166,'_elementor_template_type','wp-page'),(832,166,'_elementor_version','3.5.5'),(833,166,'_elementor_edit_mode','builder'),(748,157,'_elementor_template_type','wp-page'),(749,157,'_elementor_version','3.5.5'),(750,157,'_elementor_edit_mode','builder'),(751,157,'_wp_page_template','elementor_canvas'),(752,157,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(753,157,'_elementor_page_assets','a:0:{}'),(754,157,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(755,157,'_elementor_pro_version','3.6.2'),(757,158,'_elementor_template_type','wp-page'),(758,158,'_elementor_version','3.5.5'),(759,158,'_elementor_edit_mode','builder'),(760,158,'_wp_page_template','elementor_canvas'),(761,158,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(762,158,'_elementor_page_assets','a:0:{}'),(763,158,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(764,158,'_elementor_pro_version','3.6.2'),(767,159,'_elementor_version','3.5.5'),(768,159,'_elementor_edit_mode','builder'),(769,159,'_wp_page_template','elementor_canvas'),(770,159,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(771,159,'_elementor_page_assets','a:0:{}'),(772,159,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(773,159,'_elementor_pro_version','3.6.2'),(776,160,'_elementor_template_type','wp-page'),(777,160,'_elementor_version','3.5.5'),(778,160,'_elementor_edit_mode','builder'),(779,160,'_wp_page_template','elementor_canvas'),(780,160,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(781,160,'_elementor_page_assets','a:0:{}'),(782,160,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(783,160,'_elementor_pro_version','3.6.2'),(785,161,'_elementor_template_type','wp-page'),(786,161,'_elementor_version','3.5.5'),(787,161,'_elementor_edit_mode','builder'),(788,161,'_wp_page_template','elementor_canvas'),(789,161,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(790,161,'_elementor_page_assets','a:0:{}'),(791,161,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(792,161,'_elementor_pro_version','3.6.2'),(794,162,'_elementor_template_type','wp-page'),(795,162,'_elementor_version','3.5.5'),(796,162,'_elementor_edit_mode','builder'),(797,162,'_wp_page_template','elementor_canvas'),(798,162,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(799,162,'_elementor_page_assets','a:0:{}'),(800,162,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(801,162,'_elementor_pro_version','3.6.2'),(804,163,'_elementor_template_type','wp-page'),(805,163,'_elementor_version','3.5.5'),(806,163,'_elementor_edit_mode','builder'),(807,163,'_wp_page_template','elementor_canvas'),(808,163,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(809,163,'_elementor_page_assets','a:0:{}'),(810,163,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(811,163,'_elementor_pro_version','3.6.2'),(813,164,'_elementor_template_type','wp-page'),(814,164,'_elementor_version','3.5.5'),(815,164,'_elementor_edit_mode','builder'),(816,164,'_wp_page_template','elementor_canvas'),(817,164,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(818,164,'_elementor_page_assets','a:0:{}'),(819,164,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(820,164,'_elementor_pro_version','3.6.2'),(823,165,'_elementor_version','3.5.5'),(824,165,'_elementor_edit_mode','builder'),(825,165,'_wp_page_template','elementor_canvas'),(826,165,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\",\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(827,165,'_elementor_page_assets','a:0:{}'),(828,165,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(829,165,'_elementor_pro_version','3.6.2'),(834,166,'_wp_page_template','elementor_canvas'),(835,166,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\",\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(836,166,'_elementor_page_assets','a:0:{}'),(837,166,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(838,166,'_elementor_pro_version','3.6.2'),(839,167,'_elementor_template_type','wp-page'),(840,167,'_elementor_version','3.5.5'),(841,167,'_elementor_edit_mode','builder'),(842,167,'_wp_page_template','elementor_canvas'),(843,167,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\",\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(844,167,'_elementor_page_assets','a:0:{}'),(845,167,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(846,167,'_elementor_pro_version','3.6.2'),(936,178,'_elementor_template_type','wp-page'),(847,168,'_elementor_template_type','wp-page'),(848,168,'_elementor_version','3.5.5'),(849,168,'_elementor_edit_mode','builder'),(850,168,'_wp_page_template','elementor_canvas'),(851,168,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(852,168,'_elementor_page_assets','a:0:{}'),(853,168,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(854,168,'_elementor_pro_version','3.6.2'),(856,169,'_elementor_template_type','wp-page'),(857,169,'_elementor_version','3.5.5'),(858,169,'_elementor_edit_mode','builder'),(859,169,'_wp_page_template','elementor_canvas'),(860,169,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(861,169,'_elementor_page_assets','a:0:{}'),(862,169,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(863,169,'_elementor_pro_version','3.6.2'),(865,170,'_elementor_template_type','wp-page'),(866,170,'_elementor_version','3.5.5'),(867,170,'_elementor_edit_mode','builder'),(868,170,'_wp_page_template','elementor_canvas'),(869,170,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"size\":\"large\",\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u00a0<\\/h3><h3><strong>About the Practice<\\/strong><\\/h3>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(870,170,'_elementor_page_assets','a:0:{}'),(871,170,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(872,170,'_elementor_pro_version','3.6.2'),(912,175,'_elementor_template_type','kit'),(874,171,'_elementor_template_type','wp-page'),(875,171,'_elementor_version','3.5.5'),(876,171,'_elementor_edit_mode','builder'),(877,171,'_wp_page_template','elementor_canvas'),(878,171,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>About the Practice<\\/h4>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\",\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(879,171,'_elementor_page_assets','a:0:{}'),(880,171,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(881,171,'_elementor_pro_version','3.6.2'),(913,175,'_wp_page_template','default'),(914,175,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:2:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}i:1;a:2:{s:3:\"_id\";s:7:\"522b3ce\";s:5:\"title\";s:4:\"Nope\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:2:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}i:1;a:5:{s:3:\"_id\";s:7:\"ec49dcf\";s:5:\"title\";s:5:\"Tajal\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Tajawal\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(941,178,'_elementor_page_assets','a:0:{}'),(942,178,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(943,178,'_elementor_pro_version','3.6.2'),(970,182,'_elementor_template_type','wp-page'),(971,182,'_elementor_version','3.5.5'),(972,182,'_elementor_edit_mode','builder'),(973,182,'_wp_page_template','elementor_canvas'),(974,182,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a790789\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5aa1b70\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(902,174,'_elementor_edit_mode','builder'),(903,174,'_elementor_template_type','kit'),(904,174,'_wp_page_template','default'),(905,174,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:2:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}i:1;a:2:{s:3:\"_id\";s:7:\"522b3ce\";s:5:\"title\";s:4:\"Nope\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(891,173,'_elementor_edit_mode','builder'),(892,173,'_elementor_template_type','kit'),(893,173,'_wp_page_template','default'),(894,173,'_elementor_page_settings','a:48:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:2:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}i:1;a:2:{s:3:\"_id\";s:7:\"522b3ce\";s:5:\"title\";s:4:\"Nope\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:2;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}}'),(895,173,'_elementor_data','[]'),(896,173,'_elementor_page_assets','a:0:{}'),(897,173,'_elementor_version','3.5.5'),(898,173,'_elementor_pro_version','3.6.2'),(3230,462,'_elementor_template_type','kit'),(906,174,'_elementor_data','[]'),(907,174,'_elementor_page_assets','a:0:{}'),(908,174,'_elementor_version','3.5.5'),(909,174,'_elementor_pro_version','3.6.2'),(911,175,'_elementor_edit_mode','builder'),(3229,462,'_elementor_edit_mode','builder'),(3221,461,'_elementor_edit_mode','builder'),(3222,461,'_elementor_template_type','kit'),(915,175,'_elementor_data','[]'),(916,175,'_elementor_page_assets','a:0:{}'),(917,175,'_elementor_version','3.5.5'),(918,175,'_elementor_pro_version','3.6.2'),(920,176,'_elementor_template_type','wp-page'),(3225,461,'_elementor_data','[]'),(921,176,'_elementor_version','3.5.5'),(922,176,'_elementor_edit_mode','builder'),(923,176,'_wp_page_template','elementor_canvas'),(924,176,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>About the Practice<\\/h4>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\",\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(925,176,'_elementor_page_assets','a:0:{}'),(926,176,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(927,176,'_elementor_pro_version','3.6.2'),(928,177,'_elementor_template_type','wp-page'),(929,177,'_elementor_version','3.5.5'),(930,177,'_elementor_edit_mode','builder'),(931,177,'_wp_page_template','elementor_canvas'),(932,177,'_elementor_data','[{\"id\":\"68f693d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b4d8f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93817ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6a88b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f639b0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ca4980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f9a02c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Georgia\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#4B4C4C\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"menu_typography_typography\":\"globals\\/typography?id=a8c2da2\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"004e738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":741,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"030a75f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca98cea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>About the Practice<\\/h4>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\",\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2736dab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"203a6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #333333;\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/span><\\/p>\\n<p><span style=\\\"color: #333333;\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a8c2da2\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8276ec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87da05b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(933,177,'_elementor_page_assets','a:0:{}'),(934,177,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(935,177,'_elementor_pro_version','3.6.2'),(954,180,'_elementor_template_type','wp-page'),(955,180,'_elementor_version','3.5.5'),(956,180,'_elementor_edit_mode','builder'),(957,180,'_wp_page_template','elementor_canvas'),(958,180,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(959,180,'_elementor_page_assets','a:0:{}'),(960,180,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(961,180,'_elementor_pro_version','3.6.2'),(962,181,'_elementor_template_type','wp-page'),(963,181,'_elementor_version','3.5.5'),(964,181,'_elementor_edit_mode','builder'),(965,181,'_wp_page_template','elementor_canvas'),(966,181,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(967,181,'_elementor_page_assets','a:0:{}'),(968,181,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(969,181,'_elementor_pro_version','3.6.2'),(975,182,'_elementor_page_assets','a:0:{}'),(976,182,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(977,182,'_elementor_pro_version','3.6.2'),(978,183,'_elementor_template_type','wp-page'),(979,183,'_elementor_version','3.5.5'),(980,183,'_elementor_edit_mode','builder'),(981,183,'_wp_page_template','elementor_canvas'),(982,183,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a790789\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5aa1b70\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(983,183,'_elementor_page_assets','a:0:{}'),(984,183,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(985,183,'_elementor_pro_version','3.6.2'),(986,184,'_elementor_template_type','wp-page'),(987,184,'_elementor_version','3.5.5'),(988,184,'_elementor_edit_mode','builder'),(989,184,'_wp_page_template','elementor_canvas'),(990,184,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a790789\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5aa1b70\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(991,184,'_elementor_page_assets','a:0:{}'),(992,184,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(993,184,'_elementor_pro_version','3.6.2'),(994,185,'_elementor_template_type','wp-page'),(995,185,'_elementor_version','3.5.5'),(996,185,'_elementor_edit_mode','builder'),(997,185,'_wp_page_template','elementor_canvas'),(998,185,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a790789\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5aa1b70\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(999,185,'_elementor_page_assets','a:0:{}'),(1000,185,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1001,185,'_elementor_pro_version','3.6.2'),(1069,196,'_elementor_edit_mode','builder'),(1070,196,'_elementor_template_type','page'),(1071,196,'_elementor_version','3.5.5'),(1072,196,'_elementor_pro_version','3.6.2'),(1073,197,'_elementor_edit_mode','builder'),(1074,197,'_elementor_template_type','page'),(1075,197,'_elementor_version','3.5.5'),(1076,197,'_elementor_pro_version','3.6.2'),(1077,196,'_wp_page_template','elementor_canvas'),(1078,196,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1079,196,'_elementor_data','[{\"id\":\"5bb8d24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"74cbc7fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2eb3e2cc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7fef2597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f7f775a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"629d36e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51899c53\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2e5b554a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"107aecce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About the Practice<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a21e6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"726788a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8b50cb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8d69cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7598d1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b54624\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1107,201,'_wp_page_template','elementor_canvas'),(1108,201,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a6170\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"189e353\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3714bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4644340\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9306915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1106,201,'_elementor_edit_mode','builder'),(1104,201,'_elementor_template_type','wp-page'),(1105,201,'_elementor_version','3.5.5'),(1088,199,'_elementor_template_type','wp-page'),(1089,199,'_elementor_version','3.5.5'),(1090,199,'_elementor_edit_mode','builder'),(1123,203,'_elementor_template_type','wp-page'),(1124,203,'_elementor_version','3.5.5'),(1125,203,'_elementor_edit_mode','builder'),(1126,203,'_wp_page_template','elementor_canvas'),(1111,201,'_elementor_pro_version','3.6.2'),(1092,199,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a790789\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5aa1b70\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1093,199,'_elementor_page_assets','a:0:{}'),(1094,199,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1095,199,'_elementor_pro_version','3.6.2'),(1096,200,'_elementor_template_type','wp-page'),(1097,200,'_elementor_version','3.5.5'),(1098,200,'_elementor_edit_mode','builder'),(1099,200,'_wp_page_template','elementor_canvas'),(1100,200,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df0971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"052e201\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a26d12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d5a8d96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a790789\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5aa1b70\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1101,200,'_elementor_page_assets','a:0:{}'),(1102,200,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1103,200,'_elementor_pro_version','3.6.2'),(1109,201,'_elementor_page_assets','a:0:{}'),(1110,201,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1091,199,'_wp_page_template','elementor_canvas'),(1080,198,'_elementor_edit_mode','builder'),(1081,198,'_elementor_template_type','page'),(1082,198,'_elementor_version','3.5.5'),(1083,198,'_elementor_pro_version','3.6.2'),(1084,198,'_wp_page_template','elementor_canvas'),(1085,198,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1086,198,'_elementor_data','[{\"id\":\"5bb8d24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"74cbc7fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2eb3e2cc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7fef2597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f7f775a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"629d36e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51899c53\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2e5b554a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"107aecce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About the Practice<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a21e6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"726788a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8b50cb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8d69cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7598d1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b54624\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1087,196,'_elementor_page_assets','a:0:{}'),(1143,205,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a6170\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=2e8c5c6\"}},\"elements\":[{\"id\":\"189e353\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a3714bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4644340\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9306915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1141,205,'_elementor_edit_mode','builder'),(1142,205,'_wp_page_template','elementor_canvas'),(1140,205,'_elementor_version','3.5.5'),(1139,205,'_elementor_template_type','wp-page'),(1127,203,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a6170\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"189e353\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3714bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4644340\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9306915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1128,203,'_elementor_page_assets','a:0:{}'),(1129,203,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1130,203,'_elementor_pro_version','3.6.2'),(1131,204,'_elementor_template_type','wp-page'),(1132,204,'_elementor_version','3.5.5'),(1133,204,'_elementor_edit_mode','builder'),(1134,204,'_wp_page_template','elementor_canvas'),(1135,204,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a6170\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"189e353\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3714bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4644340\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9306915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1136,204,'_elementor_page_assets','a:0:{}'),(1137,204,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1138,204,'_elementor_pro_version','3.6.2'),(1144,205,'_elementor_page_assets','a:0:{}'),(1145,205,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1146,205,'_elementor_pro_version','3.6.2'),(1157,207,'_elementor_edit_mode','builder'),(1158,207,'_elementor_template_type','kit'),(1159,207,'_wp_page_template','default'),(1192,211,'_elementor_template_type','wp-page'),(1188,210,'_elementor_page_assets','a:0:{}'),(1189,210,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1190,210,'_elementor_pro_version','3.6.2'),(1247,217,'_wp_attached_file','2022/02/Ariel-Axelrod.webp'),(1248,217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:26:\"2022/02/Ariel-Axelrod.webp\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Ariel-Axelrod-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1169,208,'_elementor_edit_mode','builder'),(1170,208,'_wp_page_template','elementor_canvas'),(1171,208,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a6170\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=2e8c5c6\"}},\"elements\":[{\"id\":\"189e353\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a3714bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4644340\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9306915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1183,210,'_elementor_template_type','wp-page'),(1184,210,'_elementor_version','3.5.5'),(1185,210,'_elementor_edit_mode','builder'),(1186,210,'_wp_page_template','elementor_canvas'),(1187,210,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1160,207,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}i:1;a:2:{s:3:\"_id\";s:7:\"522b3ce\";s:5:\"title\";s:4:\"Nope\";}i:2;a:3:{s:3:\"_id\";s:7:\"8de9cc6\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:9:\"#00000000\";}i:3;a:3:{s:3:\"_id\";s:7:\"2e8c5c6\";s:5:\"title\";s:19:\"Contrast Background\";s:5:\"color\";s:7:\"#79A786\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:4:\"Lora\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:7:\"Georgia\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(1161,207,'_elementor_data','[]'),(1162,207,'_elementor_page_assets','a:0:{}'),(1163,207,'_elementor_version','3.5.5'),(1164,207,'_elementor_pro_version','3.6.2'),(1167,208,'_elementor_template_type','wp-page'),(1168,208,'_elementor_version','3.5.5'),(1172,208,'_elementor_page_assets','a:0:{}'),(1173,208,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1174,208,'_elementor_pro_version','3.6.2'),(1175,209,'_elementor_template_type','wp-page'),(1176,209,'_elementor_version','3.5.5'),(1177,209,'_elementor_edit_mode','builder'),(1178,209,'_wp_page_template','elementor_canvas'),(1179,209,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a6170\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=2e8c5c6\"}},\"elements\":[{\"id\":\"189e353\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a3714bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>About the Practice<\\/h2>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4644340\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9306915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1180,209,'_elementor_page_assets','a:0:{}'),(1181,209,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1182,209,'_elementor_pro_version','3.6.2'),(1193,211,'_elementor_version','3.5.5'),(1194,211,'_elementor_edit_mode','builder'),(1195,211,'_wp_page_template','elementor_canvas'),(1196,211,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1197,211,'_elementor_page_assets','a:0:{}'),(1198,211,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1199,211,'_elementor_pro_version','3.6.2'),(1201,212,'_elementor_template_type','wp-page'),(1202,212,'_elementor_version','3.5.5'),(1203,212,'_elementor_edit_mode','builder'),(1204,212,'_wp_page_template','elementor_canvas'),(1205,212,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1206,212,'_elementor_page_assets','a:0:{}'),(1207,212,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1208,212,'_elementor_pro_version','3.6.2'),(1210,213,'_elementor_template_type','wp-page'),(1211,213,'_elementor_version','3.5.5'),(1212,213,'_elementor_edit_mode','builder'),(1213,213,'_wp_page_template','elementor_canvas'),(1214,213,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1215,213,'_elementor_page_assets','a:0:{}'),(1216,213,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1217,213,'_elementor_pro_version','3.6.2'),(1220,214,'_elementor_template_type','wp-page'),(1221,214,'_elementor_version','3.5.5'),(1222,214,'_elementor_edit_mode','builder'),(1223,214,'_wp_page_template','elementor_canvas'),(1224,214,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1225,214,'_elementor_page_assets','a:0:{}'),(1226,214,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1227,214,'_elementor_pro_version','3.6.2'),(1229,215,'_elementor_template_type','wp-page'),(1230,215,'_elementor_version','3.5.5'),(1231,215,'_elementor_edit_mode','builder'),(1232,215,'_wp_page_template','elementor_canvas'),(1233,215,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1234,215,'_elementor_page_assets','a:0:{}'),(1235,215,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1236,215,'_elementor_pro_version','3.6.2'),(1238,216,'_elementor_template_type','wp-page'),(1239,216,'_elementor_version','3.5.5'),(1240,216,'_elementor_edit_mode','builder'),(1241,216,'_wp_page_template','elementor_canvas'),(1242,216,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1243,216,'_elementor_page_assets','a:0:{}'),(1244,216,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1245,216,'_elementor_pro_version','3.6.2'),(1249,218,'_wp_attached_file','2022/02/Office-Cat.webp'),(1250,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:23:\"2022/02/Office-Cat.webp\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Office-Cat-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1280,222,'_elementor_page_assets','a:0:{}'),(1278,222,'_wp_page_template','elementor_canvas'),(1279,222,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1276,222,'_elementor_version','3.5.5'),(1277,222,'_elementor_edit_mode','builder'),(1275,222,'_elementor_template_type','wp-page'),(1259,220,'_elementor_template_type','wp-page'),(1260,220,'_elementor_version','3.5.5'),(1261,220,'_elementor_edit_mode','builder'),(1262,220,'_wp_page_template','elementor_canvas'),(1263,220,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1264,220,'_elementor_page_assets','a:0:{}'),(1265,220,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1266,220,'_elementor_pro_version','3.6.2'),(1267,221,'_elementor_template_type','wp-page'),(1268,221,'_elementor_version','3.5.5'),(1269,221,'_elementor_edit_mode','builder'),(1270,221,'_wp_page_template','elementor_canvas'),(1271,221,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1272,221,'_elementor_page_assets','a:0:{}'),(1273,221,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1274,221,'_elementor_pro_version','3.6.2'),(1281,222,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1282,222,'_elementor_pro_version','3.6.2'),(2682,392,'_elementor_page_assets','a:0:{}'),(2690,393,'_elementor_page_assets','a:0:{}'),(2691,394,'_elementor_edit_mode','builder'),(2692,394,'_elementor_template_type','wp-page'),(2693,394,'_elementor_version','3.6.2'),(2694,394,'_elementor_pro_version','3.6.4'),(2695,394,'_wp_page_template','elementor_canvas'),(2696,394,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2697,394,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2256,341,'_wp_page_template','elementor_canvas'),(2255,341,'_elementor_pro_version','3.6.4'),(2253,341,'_elementor_template_type','wp-page'),(2254,341,'_elementor_version','3.6.2'),(2257,341,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2251,138,'_elementor_page_assets','a:0:{}'),(2234,338,'_elementor_template_type','wp-page'),(2235,338,'_elementor_version','3.6.2'),(2236,338,'_elementor_pro_version','3.6.4'),(2237,339,'_elementor_edit_mode','builder'),(2238,339,'_elementor_template_type','wp-page'),(2239,339,'_elementor_version','3.6.2'),(2240,339,'_elementor_pro_version','3.6.4'),(2233,338,'_elementor_edit_mode','builder'),(1381,236,'_elementor_template_type','wp-page'),(1382,236,'_elementor_version','3.5.5'),(1383,236,'_elementor_edit_mode','builder'),(1384,236,'_wp_page_template','elementor_canvas'),(1385,236,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"d00b7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"0f86d41\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9c7e0b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1363,234,'_elementor_template_type','wp-page'),(1364,234,'_elementor_version','3.5.5'),(1365,234,'_elementor_edit_mode','builder'),(1366,234,'_wp_page_template','elementor_canvas'),(1367,234,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1368,234,'_elementor_page_assets','a:0:{}'),(1369,234,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1370,234,'_elementor_pro_version','3.6.2'),(1372,235,'_elementor_template_type','wp-page'),(1373,235,'_elementor_version','3.5.5'),(1374,235,'_elementor_edit_mode','builder'),(1375,235,'_wp_page_template','elementor_canvas'),(1376,235,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=cd6f3c7\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.89200000000000301270119962282478809356689453125},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0999999999999996447286321199499070644378662109375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2021-2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1377,235,'_elementor_page_assets','a:0:{}'),(1378,235,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1379,235,'_elementor_pro_version','3.6.2'),(1387,236,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1388,236,'_elementor_pro_version','3.6.2'),(1422,241,'_elementor_template_type','wp-page'),(1423,241,'_elementor_version','3.6.2'),(1424,241,'_elementor_edit_mode','builder'),(1425,241,'_wp_page_template','elementor_canvas'),(1426,241,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb0d4c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Team\",\"align\":\"center\",\"text_stroke_text_stroke_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a2a1129\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"3263fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"6f8b3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"9c8c2df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01e67a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63b2ae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1400,238,'_wp_attached_file','2022/04/Head-shot.jpg'),(1401,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:239;s:6:\"height\";i:269;s:4:\"file\";s:21:\"2022/04/Head-shot.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Head-shot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:40:\"As seen on a Sussex Directories Inc site\";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:40:\"As seen on a Sussex Directories Inc site\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1431,242,'_elementor_template_type','wp-page'),(1432,242,'_elementor_version','3.6.2'),(1433,242,'_elementor_edit_mode','builder'),(1402,238,'_wp_attachment_image_alt','Ariel Axelrod'),(1403,218,'_wp_attachment_image_alt','Yahu'),(1404,239,'_elementor_template_type','wp-page'),(1405,239,'_elementor_version','3.6.2'),(1406,239,'_elementor_edit_mode','builder'),(1407,239,'_wp_page_template','elementor_canvas'),(1408,239,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"d00b7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"0f86d41\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9c7e0b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1409,239,'_elementor_page_assets','a:0:{}'),(1410,239,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1411,239,'_elementor_pro_version','3.6.4'),(1413,240,'_elementor_template_type','wp-page'),(1414,240,'_elementor_version','3.6.2'),(1415,240,'_elementor_edit_mode','builder'),(1416,240,'_wp_page_template','elementor_canvas'),(1417,240,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"d00b7bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"0f86d41\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9c7e0b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2022. All rights reserved.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1418,240,'_elementor_page_assets','a:0:{}'),(1419,240,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1420,240,'_elementor_pro_version','3.6.4'),(1427,241,'_elementor_page_assets','a:0:{}'),(1428,241,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1429,241,'_elementor_pro_version','3.6.4'),(1434,242,'_wp_page_template','elementor_canvas'),(1435,242,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb0d4c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Team\",\"align\":\"center\",\"text_stroke_text_stroke_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a2a1129\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"3263fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"6f8b3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"9c8c2df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01e67a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63b2ae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1436,242,'_elementor_page_assets','a:0:{}'),(1437,242,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1438,242,'_elementor_pro_version','3.6.4'),(1439,243,'_elementor_template_type','wp-page'),(1440,243,'_elementor_version','3.6.2'),(1441,243,'_elementor_edit_mode','builder'),(1442,243,'_wp_page_template','elementor_canvas'),(1443,243,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb0d4c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Team\",\"align\":\"center\",\"text_stroke_text_stroke_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a2a1129\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"3263fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"6f8b3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"9c8c2df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01e67a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63b2ae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1444,243,'_elementor_page_assets','a:0:{}'),(1445,243,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1446,243,'_elementor_pro_version','3.6.4'),(1447,244,'_elementor_template_type','wp-page'),(1448,244,'_elementor_version','3.6.2'),(1449,244,'_elementor_edit_mode','builder'),(1450,244,'_wp_page_template','elementor_canvas'),(1451,244,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb0d4c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Team\",\"align\":\"center\",\"text_stroke_text_stroke_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1452,244,'_elementor_page_assets','a:0:{}'),(1453,244,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1454,244,'_elementor_pro_version','3.6.4'),(1455,245,'_elementor_template_type','wp-page'),(1456,245,'_elementor_version','3.6.2'),(1457,245,'_elementor_edit_mode','builder'),(1458,245,'_wp_page_template','elementor_canvas'),(1459,245,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb0d4c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Team\",\"align\":\"center\",\"text_stroke_text_stroke_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1460,245,'_elementor_page_assets','a:0:{}'),(1461,245,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1462,245,'_elementor_pro_version','3.6.4'),(1463,246,'_elementor_template_type','wp-page'),(1464,246,'_elementor_version','3.6.2'),(1465,246,'_elementor_edit_mode','builder'),(1466,246,'_wp_page_template','elementor_canvas'),(1467,246,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb0d4c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Team\",\"align\":\"center\",\"text_stroke_text_stroke_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1468,246,'_elementor_page_assets','a:0:{}'),(1469,246,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1470,246,'_elementor_pro_version','3.6.4'),(1471,247,'_elementor_template_type','wp-page'),(1472,247,'_elementor_version','3.6.2'),(1473,247,'_elementor_edit_mode','builder'),(1474,247,'_wp_page_template','elementor_canvas'),(1475,247,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1476,247,'_elementor_page_assets','a:0:{}'),(1477,247,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1478,247,'_elementor_pro_version','3.6.4'),(1480,248,'_elementor_template_type','wp-page'),(1481,248,'_elementor_version','3.6.2'),(1482,248,'_elementor_edit_mode','builder'),(1483,248,'_wp_page_template','elementor_canvas'),(1484,248,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1485,248,'_elementor_page_assets','a:0:{}'),(1486,248,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1487,248,'_elementor_pro_version','3.6.4'),(1488,249,'_elementor_template_type','wp-page'),(1489,249,'_elementor_version','3.6.2'),(1490,249,'_elementor_edit_mode','builder'),(1491,249,'_wp_page_template','elementor_canvas'),(1492,249,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1493,249,'_elementor_page_assets','a:0:{}'),(1494,249,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1495,249,'_elementor_pro_version','3.6.4'),(1496,250,'_elementor_template_type','wp-page'),(1497,250,'_elementor_version','3.6.2'),(1498,250,'_elementor_edit_mode','builder'),(1499,250,'_wp_page_template','elementor_canvas'),(1500,250,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1501,250,'_elementor_page_assets','a:0:{}'),(1502,250,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1503,250,'_elementor_pro_version','3.6.4'),(1528,254,'_elementor_template_type','wp-page'),(1529,254,'_elementor_version','3.6.2'),(1530,254,'_elementor_edit_mode','builder'),(1531,254,'_wp_page_template','elementor_canvas'),(1532,254,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1512,252,'_elementor_template_type','wp-page'),(1513,252,'_elementor_version','3.6.2'),(1514,252,'_elementor_edit_mode','builder'),(1515,252,'_wp_page_template','elementor_canvas'),(1516,252,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1517,252,'_elementor_page_assets','a:0:{}'),(1518,252,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1519,252,'_elementor_pro_version','3.6.4'),(1520,253,'_elementor_template_type','wp-page'),(1521,253,'_elementor_version','3.6.2'),(1522,253,'_elementor_edit_mode','builder'),(1523,253,'_wp_page_template','elementor_canvas'),(1524,253,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1525,253,'_elementor_page_assets','a:0:{}'),(1526,253,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1527,253,'_elementor_pro_version','3.6.4'),(1533,254,'_elementor_page_assets','a:0:{}'),(1534,254,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1535,254,'_elementor_pro_version','3.6.4'),(1536,255,'_elementor_template_type','wp-page'),(1537,255,'_elementor_version','3.6.2'),(1538,255,'_elementor_edit_mode','builder'),(1539,255,'_wp_page_template','elementor_canvas'),(1540,255,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1541,255,'_elementor_page_assets','a:0:{}'),(1542,255,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1543,255,'_elementor_pro_version','3.6.4'),(1544,256,'_elementor_template_type','wp-page'),(1545,256,'_elementor_version','3.6.2'),(1546,256,'_elementor_edit_mode','builder'),(1547,256,'_wp_page_template','elementor_canvas'),(1548,256,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1549,256,'_elementor_page_assets','a:0:{}'),(1550,256,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1551,256,'_elementor_pro_version','3.6.4'),(1552,257,'_elementor_template_type','wp-page'),(1553,257,'_elementor_version','3.6.2'),(1554,257,'_elementor_edit_mode','builder'),(1555,257,'_wp_page_template','elementor_canvas'),(1556,257,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong><ul><li>Licensed mental health counselor (LMHC). Licensed in Massachusetts, license no. 11882<\\/li><li>National certified counselor (NCC). Certified by NBCC, cert no. 944326.<\\/li><\\/ul><strong>Education<\\/strong><ul><li>MA in Clinical Mental Health Counseling, concentration in Health and Behavioral Medicine, William James College<\\/li><li>BA in Russian Area Studies, Wellesley College<\\/li><\\/ul><strong>Clinical Training<\\/strong><ul><li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li><li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li><li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li><\\/ul><strong>Professional Associations<\\/strong><ul><li>Massachusetts Mental Health Counselors Association<\\/li><\\/ul><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1557,257,'_elementor_page_assets','a:0:{}'),(1558,257,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1559,257,'_elementor_pro_version','3.6.4'),(1560,258,'_elementor_template_type','wp-page'),(1561,258,'_elementor_version','3.6.2'),(1562,258,'_elementor_edit_mode','builder'),(1563,258,'_wp_page_template','elementor_canvas'),(1564,258,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong><ul><li>Licensed mental health counselor (LMHC). Licensed in Massachusetts, license no. 11882<\\/li><li>National certified counselor (NCC). Certified by NBCC, cert no. 944326.<\\/li><\\/ul><strong>Education<\\/strong><ul><li>MA in Clinical Mental Health Counseling, concentration in Health and Behavioral Medicine, William James College<\\/li><li>BA in Russian Area Studies, Wellesley College<\\/li><\\/ul><strong>Clinical Training<\\/strong><ul><li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li><li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li><li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li><\\/ul><strong>Professional Associations<\\/strong><ul><li>Massachusetts Mental Health Counselors Association<\\/li><\\/ul><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1565,258,'_elementor_page_assets','a:0:{}'),(1566,258,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1567,258,'_elementor_pro_version','3.6.4'),(1568,259,'_elementor_template_type','wp-page'),(1569,259,'_elementor_version','3.6.2'),(1570,259,'_elementor_edit_mode','builder'),(1571,259,'_wp_page_template','elementor_canvas'),(1572,259,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong><ul><li>Licensed mental health counselor (LMHC). Licensed in Massachusetts, license no. 11882<\\/li><li>National certified counselor (NCC). Certified by NBCC, cert no. 944326.<\\/li><\\/ul><strong>Education<\\/strong><ul><li>MA in Clinical Mental Health Counseling, concentration in Health and Behavioral Medicine, William James College<\\/li><li>BA in Russian Area Studies, Wellesley College<\\/li><\\/ul><strong>Clinical Training<\\/strong><ul><li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li><li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li><li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li><\\/ul><strong>Professional Associations<\\/strong><ul><li>Massachusetts Mental Health Counselors Association<\\/li><\\/ul><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1573,259,'_elementor_page_assets','a:0:{}'),(1574,259,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1575,259,'_elementor_pro_version','3.6.4'),(1576,260,'_elementor_template_type','wp-page'),(1577,260,'_elementor_version','3.6.2'),(1578,260,'_elementor_edit_mode','builder'),(1579,260,'_wp_page_template','elementor_canvas'),(1580,260,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC). <br>Licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC). <br>Certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1581,260,'_elementor_page_assets','a:0:{}'),(1582,260,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1583,260,'_elementor_pro_version','3.6.4'),(1584,261,'_elementor_template_type','wp-page'),(1585,261,'_elementor_version','3.6.2'),(1586,261,'_elementor_edit_mode','builder'),(1587,261,'_wp_page_template','elementor_canvas'),(1588,261,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC). <br>Licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC). <br>Certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1589,261,'_elementor_page_assets','a:0:{}'),(1590,261,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1591,261,'_elementor_pro_version','3.6.4'),(1592,262,'_elementor_template_type','wp-page'),(1593,262,'_elementor_version','3.6.2'),(1594,262,'_elementor_edit_mode','builder'),(1595,262,'_wp_page_template','elementor_canvas'),(1596,262,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC). <br>Licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC). <br>Certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1597,262,'_elementor_page_assets','a:0:{}'),(1598,262,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1599,262,'_elementor_pro_version','3.6.4'),(1600,263,'_elementor_template_type','wp-page'),(1601,263,'_elementor_version','3.6.2'),(1602,263,'_elementor_edit_mode','builder'),(1603,263,'_wp_page_template','elementor_canvas'),(1604,263,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1605,263,'_elementor_page_assets','a:0:{}'),(1606,263,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1607,263,'_elementor_pro_version','3.6.4'),(1608,264,'_elementor_edit_mode','builder'),(1609,264,'_elementor_template_type','widget'),(1610,265,'_elementor_edit_mode','builder'),(1611,265,'_elementor_template_type','widget'),(1612,264,'_wp_page_template','default'),(1613,264,'_elementor_version','3.6.2'),(1614,264,'_elementor_pro_version','3.6.4'),(1615,264,'_elementor_data','[{\"id\":\"30787939\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}]'),(1616,266,'_elementor_edit_mode','builder'),(1617,266,'_elementor_template_type','widget'),(1618,266,'_wp_page_template','default'),(1619,266,'_elementor_version','3.6.2'),(1620,266,'_elementor_pro_version','3.6.4'),(1621,266,'_elementor_data','[{\"id\":\"30787939\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}]'),(1622,264,'_elementor_page_assets','a:0:{}'),(1623,264,'_elementor_template_widget_type','spacer'),(1624,267,'_elementor_template_type','wp-page'),(1625,267,'_elementor_version','3.6.2'),(1626,267,'_elementor_edit_mode','builder'),(1627,267,'_wp_page_template','elementor_canvas'),(1628,267,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1629,267,'_elementor_page_assets','a:0:{}'),(1630,267,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1631,267,'_elementor_pro_version','3.6.4'),(1632,268,'_elementor_template_type','wp-page'),(1633,268,'_elementor_version','3.6.2'),(1634,268,'_elementor_edit_mode','builder'),(1635,268,'_wp_page_template','elementor_canvas'),(1636,268,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e50e260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1637,268,'_elementor_page_assets','a:0:{}'),(1638,268,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1639,268,'_elementor_pro_version','3.6.4'),(1640,269,'_elementor_template_type','wp-page'),(1641,269,'_elementor_version','3.6.2'),(1642,269,'_elementor_edit_mode','builder'),(1643,269,'_wp_page_template','elementor_canvas'),(1644,269,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1645,269,'_elementor_page_assets','a:0:{}'),(1646,269,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1647,269,'_elementor_pro_version','3.6.4'),(1648,264,'_elementor_global_widget_included_posts','a:31:{i:29;b:1;i:285;b:1;i:292;b:1;i:288;b:1;i:300;b:1;i:37;b:1;i:310;b:1;i:317;b:1;i:335;b:1;i:336;b:1;i:138;b:1;i:356;b:1;i:359;b:1;i:39;b:1;i:387;b:1;i:390;b:1;i:403;b:1;i:406;b:1;i:410;b:1;i:411;b:1;i:417;b:1;i:421;b:1;i:429;b:1;i:436;b:1;i:442;b:1;i:443;b:1;i:444;b:1;i:445;b:1;i:464;b:1;i:475;b:1;i:483;b:1;}'),(2453,366,'_elementor_template_type','wp-page'),(2454,366,'_elementor_version','3.6.2'),(2455,366,'_elementor_edit_mode','builder'),(1650,34,'_elementor_edit_mode','builder'),(1651,34,'_elementor_template_type','wp-page'),(1652,34,'_elementor_version','3.6.2'),(1653,34,'_elementor_pro_version','3.6.4'),(1654,270,'_elementor_edit_mode','builder'),(1655,270,'_elementor_template_type','wp-page'),(1656,270,'_elementor_version','3.6.2'),(1657,270,'_elementor_pro_version','3.6.4'),(1658,270,'_wp_page_template','default'),(1659,270,'_elementor_data','[]'),(1660,270,'_elementor_page_assets','a:0:{}'),(3732,39,'_elementor_css','a:6:{s:4:\"time\";i:1650011451;s:5:\"fonts\";a:1:{i:0;s:7:\"Georgia\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1663,225,'_edit_lock','1649263111:1'),(1665,225,'_wp_trash_meta_status','publish'),(1666,225,'_wp_trash_meta_time','1649263376'),(1667,225,'_wp_desired_post_slug','home-page'),(1668,196,'_wp_trash_meta_status','publish'),(1669,196,'_wp_trash_meta_time','1649263380'),(1670,196,'_wp_desired_post_slug','axelrodlmhc2'),(1671,273,'_wp_page_template','elementor_canvas'),(1672,273,'_cdp_origin','29'),(1673,273,'_cdp_origin_site','-1'),(1674,273,'_cdp_origin_title',' Home #[Counter]'),(1675,273,'_cdp_counter','2'),(1676,273,'_elementor_template_type','wp-page'),(1677,273,'_elementor_version','3.6.2'),(1678,273,'_elementor_edit_mode','builder'),(1679,273,'_wp_page_template','elementor_canvas'),(1680,273,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1681,273,'_elementor_page_assets','s:6:\"a:0:{}\";'),(1682,273,'_elementor_page_settings','s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";'),(1683,273,'_elementor_pro_version','3.6.4'),(1685,274,'_wp_page_template','elementor_canvas'),(1686,275,'_wp_page_template','elementor_canvas'),(1687,276,'_wp_page_template','elementor_canvas'),(1688,274,'_cdp_origin','273'),(1689,274,'_cdp_origin_site','-1'),(1690,274,'_cdp_origin_title',' Home #2 #[Counter]'),(1691,274,'_cdp_counter','2'),(1692,274,'_wp_page_template','elementor_canvas'),(1693,274,'_wp_page_template','elementor_canvas'),(1694,274,'_cdp_origin','29'),(1695,274,'_elementor_template_type','wp-page'),(1696,274,'_elementor_version','3.6.2'),(1697,274,'_elementor_edit_mode','builder'),(1698,274,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1699,274,'_elementor_page_assets','s:13:\"s:6:\"a:0:{}\";\";'),(1700,274,'_elementor_page_settings','s:93:\"s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";\";'),(1701,274,'_elementor_pro_version','3.6.4'),(1703,275,'_cdp_origin','273'),(1704,275,'_cdp_origin_site','-1'),(1705,275,'_cdp_origin_title',' Home #2 #[Counter]'),(1706,275,'_cdp_counter','3'),(1707,275,'_wp_page_template','elementor_canvas'),(1708,275,'_wp_page_template','elementor_canvas'),(1709,275,'_cdp_origin','29'),(1710,275,'_elementor_template_type','wp-page'),(1711,275,'_elementor_version','3.6.2'),(1712,275,'_elementor_edit_mode','builder'),(1713,275,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1714,275,'_elementor_page_assets','s:13:\"s:6:\"a:0:{}\";\";'),(1715,275,'_elementor_page_settings','s:93:\"s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";\";'),(1716,275,'_elementor_pro_version','3.6.4'),(1718,276,'_cdp_origin','273'),(1719,276,'_cdp_origin_site','-1'),(1720,276,'_cdp_origin_title',' Home #2 #[Counter]'),(1721,276,'_cdp_counter','4'),(1722,276,'_wp_page_template','elementor_canvas'),(1723,276,'_wp_page_template','elementor_canvas'),(1724,276,'_cdp_origin','29'),(1725,276,'_elementor_template_type','wp-page'),(1726,276,'_elementor_version','3.6.2'),(1727,276,'_elementor_edit_mode','builder'),(1728,276,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1729,276,'_elementor_page_assets','s:13:\"s:6:\"a:0:{}\";\";'),(1730,276,'_elementor_page_settings','s:93:\"s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";\";'),(1731,276,'_elementor_pro_version','3.6.4'),(1733,273,'_edit_lock','1649264670:1'),(1734,273,'_edit_last','1'),(1735,277,'_wp_page_template','elementor_canvas'),(1736,277,'_elementor_template_type','wp-page'),(1737,277,'_elementor_version','3.6.2'),(1738,277,'_elementor_edit_mode','builder'),(1739,277,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1740,277,'_elementor_page_assets','s:6:\"a:0:{}\";'),(1741,277,'_elementor_page_settings','s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";'),(1742,277,'_elementor_pro_version','3.6.4'),(1744,34,'_wp_trash_meta_status','publish'),(1745,34,'_wp_trash_meta_time','1649263721'),(1746,34,'_wp_desired_post_slug','specialties'),(1747,274,'_edit_lock','1649263597:1'),(1748,278,'_wp_page_template','elementor_canvas'),(1749,278,'_elementor_template_type','wp-page'),(1750,278,'_elementor_version','3.6.2'),(1751,278,'_elementor_edit_mode','builder'),(1752,278,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1753,278,'_elementor_page_assets','s:6:\"a:0:{}\";'),(1754,278,'_elementor_page_settings','s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";'),(1755,278,'_elementor_pro_version','3.6.4'),(3224,461,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(1757,279,'_wp_page_template','elementor_canvas'),(1758,279,'_elementor_template_type','wp-page'),(1759,279,'_elementor_version','3.6.2'),(1760,279,'_elementor_edit_mode','builder'),(1761,279,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1762,279,'_elementor_page_assets','s:6:\"a:0:{}\";'),(1763,279,'_elementor_page_settings','s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";'),(1764,279,'_elementor_pro_version','3.6.4'),(3219,460,'_elementor_version','3.6.2'),(3220,460,'_elementor_pro_version','3.6.4'),(3223,461,'_wp_page_template','default'),(1766,274,'_wp_trash_meta_status','draft'),(1767,274,'_wp_trash_meta_time','1649264235'),(1768,274,'_wp_desired_post_slug','home'),(1769,280,'_wp_page_template','elementor_canvas'),(1770,280,'_elementor_template_type','wp-page'),(1771,280,'_elementor_version','3.6.2'),(1772,280,'_elementor_edit_mode','builder'),(1773,280,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1774,280,'_elementor_page_assets','s:13:\"s:6:\"a:0:{}\";\";'),(1775,280,'_elementor_page_settings','s:93:\"s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";\";'),(1776,280,'_elementor_pro_version','3.6.4'),(3217,460,'_elementor_data','[]'),(3218,460,'_elementor_page_assets','a:0:{}'),(1778,275,'_wp_trash_meta_status','draft'),(1779,275,'_wp_trash_meta_time','1649264241'),(1780,275,'_wp_desired_post_slug','home'),(1781,281,'_wp_page_template','elementor_canvas'),(1782,281,'_elementor_template_type','wp-page'),(1783,281,'_elementor_version','3.6.2'),(1784,281,'_elementor_edit_mode','builder'),(1785,281,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1786,281,'_elementor_page_assets','s:13:\"s:6:\"a:0:{}\";\";'),(1787,281,'_elementor_page_settings','s:93:\"s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";\";'),(1788,281,'_elementor_pro_version','3.6.4'),(1790,276,'_wp_trash_meta_status','draft'),(1791,276,'_wp_trash_meta_time','1649264244'),(1792,276,'_wp_desired_post_slug','home'),(1793,282,'_wp_page_template','elementor_canvas'),(1794,282,'_elementor_template_type','wp-page'),(1795,282,'_elementor_version','3.6.2'),(1796,282,'_elementor_edit_mode','builder'),(1797,282,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1798,282,'_elementor_page_assets','s:13:\"s:6:\"a:0:{}\";\";'),(1799,282,'_elementor_page_settings','s:93:\"s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";\";'),(1800,282,'_elementor_pro_version','3.6.4'),(1802,283,'_wp_page_template','elementor_canvas'),(1803,283,'_cdp_origin','29'),(1804,283,'_cdp_origin_site','-1'),(1805,283,'_cdp_origin_title',' Home #[Counter]'),(1806,283,'_cdp_counter','5'),(1807,283,'_elementor_template_type','wp-page'),(1808,283,'_elementor_version','3.6.2'),(1809,283,'_elementor_edit_mode','builder'),(1810,283,'_wp_page_template','elementor_canvas'),(1811,283,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1812,283,'_elementor_page_assets','s:6:\"a:0:{}\";'),(1813,283,'_elementor_page_settings','s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";'),(1814,283,'_elementor_pro_version','3.6.4'),(1816,283,'_edit_lock','1649264421:1'),(1817,283,'_wp_trash_meta_status','draft'),(1818,283,'_wp_trash_meta_time','1649264556'),(1819,283,'_wp_desired_post_slug','home'),(1820,284,'_wp_page_template','elementor_canvas'),(1821,284,'_elementor_template_type','wp-page'),(1822,284,'_elementor_version','3.6.2'),(1823,284,'_elementor_edit_mode','builder'),(1824,284,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>u00a0u00a0u00a0 Ariel Axelrod, LMHC</p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\"text-align: center;\">About the Practice</h2>\",\"__globals__\":{\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></span></p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\">u00a0</p><p class=\"font_9\" style=\"line-height: 1.875em; font-size: 15px;\"><span class=\"color_15\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</span></p></div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">The Team</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p>u00a0</p><p>u00a0</p><p>u00a0</p><p>u00a0</p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\"text-align: center;\">Training and Experience</h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\"comp-kljqkrc6\" class=\"_1Q9if\" data-testid=\"richTextElement\"><strong>Professional Licenses and Certifications</strong>n<ul>n t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>n t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>n</ul>n<strong>Education</strong>n<ul>n t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>n t<li>BA in Russian Area Studies, Wellesley College</li>n</ul>n<strong>Clinical Training</strong>n<ul>n t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>n t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>n t<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>n</ul>n<strong>Professional Associations</strong>n<ul>n t<li>Massachusetts Mental Health Counselors Association</li>n</ul>n</div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\",\"typography_typography\":\"globals/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.</h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1825,284,'_elementor_page_assets','s:6:\"a:0:{}\";'),(1826,284,'_elementor_page_settings','s:85:\"a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}\";'),(1827,284,'_elementor_pro_version','3.6.4'),(2657,39,'__elementor_forms_snapshot','[{\"id\":\"6d0fe77\",\"name\":\"Contact Me\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"Name\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email\"},{\"id\":\"field_952e715\",\"type\":\"text\",\"label\":\"Phone No.\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"Message\"}]}]'),(2687,393,'_wp_page_template','elementor_canvas'),(2688,393,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2689,393,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2686,393,'_elementor_pro_version','3.6.4'),(2862,416,'_elementor_template_type','wp-page'),(2863,416,'_elementor_version','3.6.2'),(2864,416,'_elementor_pro_version','3.6.4'),(2683,393,'_elementor_edit_mode','builder'),(2684,393,'_elementor_template_type','wp-page'),(2685,393,'_elementor_version','3.6.2'),(2667,391,'_elementor_edit_mode','builder'),(2668,391,'_elementor_template_type','wp-page'),(2669,391,'_elementor_version','3.6.2'),(2670,391,'_elementor_pro_version','3.6.4'),(2671,391,'_wp_page_template','elementor_canvas'),(2672,391,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2673,391,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2674,391,'_elementor_page_assets','a:0:{}'),(2675,392,'_elementor_edit_mode','builder'),(2676,392,'_elementor_template_type','wp-page'),(2677,392,'_elementor_version','3.6.2'),(2678,392,'_elementor_pro_version','3.6.4'),(2679,392,'_wp_page_template','elementor_canvas'),(2680,392,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2681,392,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1848,273,'_wp_trash_meta_status','draft'),(1849,273,'_wp_trash_meta_time','1649264677'),(1850,273,'_wp_desired_post_slug','home-2'),(1851,288,'_edit_lock','1649454027:1'),(1852,290,'_menu_item_type','post_type'),(1853,290,'_menu_item_menu_item_parent','0'),(1854,290,'_menu_item_object_id','288'),(1855,290,'_menu_item_object','page'),(1856,290,'_menu_item_target',''),(1857,290,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1858,290,'_menu_item_xfn',''),(1859,290,'_menu_item_url',''),(1860,288,'_elementor_edit_mode','builder'),(1861,288,'_elementor_template_type','wp-page'),(1862,288,'_elementor_version','3.6.2'),(1863,288,'_elementor_pro_version','3.6.4'),(1884,288,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1885,288,'_elementor_data','[{\"id\":\"1cd1bef8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"32086bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e1fb36a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"30dfb1c7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"444d67c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d25f3fb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a6ece0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5bc61460\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":5},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":89.3020000000000067075234255753457546234130859375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk oversimplification when we classify all technological struggle as addiction, and yet interactive interfaces are designed to hold attention for purposes not altogether germane to wellbeing. If this is an area of concern, we can build and test strategies for resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of <em>us<\\/em>. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (a tool that can help us find our way again). This particular loss sometimes goes unnoticed in formal descriptions of health and wellbeing, but it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from school. Entering the workplace. Transitioning into a new career. Giving birth or adopting. Acclimating to life after an injury. Taking on new roles, or shedding old ones. Consider the time and energy needed to adjust to changes in self-identity. Therapy is a place to give life transitions the attention and respect they require.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":5},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"411f33f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8b86f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"f3d790c\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"464410e9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"109a428\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4452839d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1886,296,'_elementor_edit_mode','builder'),(1887,296,'_elementor_template_type','wp-page'),(1888,296,'_elementor_version','3.6.2'),(1889,296,'_elementor_pro_version','3.6.4'),(1890,296,'_wp_page_template','elementor_canvas'),(1891,296,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1892,296,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Specialties<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"404e0fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"482d3f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bf3e5e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1893,288,'_elementor_page_assets','a:0:{}'),(1894,297,'_elementor_edit_mode','builder'),(1895,297,'_elementor_template_type','wp-page'),(1896,297,'_elementor_version','3.6.2'),(1897,297,'_elementor_pro_version','3.6.4'),(1898,297,'_wp_page_template','elementor_canvas'),(1899,297,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1900,297,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Specialties<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"404e0fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"482d3f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bf3e5e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1883,288,'_wp_page_template','elementor_canvas'),(1872,293,'_wp_attached_file','2022/04/031129CapeCod33.jpg'),(1873,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:27:\"2022/04/031129CapeCod33.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"031129CapeCod33-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"031129CapeCod33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"FinePix1700Z\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1070158696\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"9.9\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1874,293,'_wp_attachment_image_alt','beach'),(1875,294,'_elementor_edit_mode','builder'),(1876,294,'_elementor_template_type','wp-page'),(1877,294,'_elementor_version','3.6.2'),(1878,294,'_elementor_pro_version','3.6.4'),(1879,295,'_elementor_edit_mode','builder'),(1880,295,'_elementor_template_type','wp-page'),(1881,295,'_elementor_version','3.6.2'),(1882,295,'_elementor_pro_version','3.6.4'),(1901,297,'_elementor_page_assets','a:0:{}'),(1902,298,'_elementor_edit_mode','builder'),(1903,298,'_elementor_template_type','wp-page'),(1904,298,'_elementor_version','3.6.2'),(1905,298,'_elementor_pro_version','3.6.4'),(1906,298,'_wp_page_template','elementor_canvas'),(1907,298,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1908,298,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Specialties<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"404e0fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"482d3f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bf3e5e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1909,298,'_elementor_page_assets','a:0:{}'),(1910,299,'_elementor_edit_mode','builder'),(1911,299,'_elementor_template_type','wp-page'),(1912,299,'_elementor_version','3.6.2'),(1913,299,'_elementor_pro_version','3.6.4'),(1914,299,'_wp_page_template','elementor_canvas'),(1915,299,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1916,299,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Executive Function<\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Issues with Technology<\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Relationships and Family Conflict<\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Creativity and Mastery<\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Body Image and Self-Esteem<\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life Transitions<\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Anxiety and Stress Management<\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Depression<\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Grief and Loss<\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1917,299,'_elementor_page_assets','a:0:{}'),(2105,323,'_elementor_edit_mode','builder'),(2106,323,'_elementor_template_type','wp-page'),(2107,323,'_elementor_version','3.6.2'),(1935,301,'_elementor_edit_mode','builder'),(1936,301,'_elementor_template_type','wp-page'),(1937,301,'_elementor_version','3.6.2'),(1938,301,'_elementor_pro_version','3.6.4'),(1939,37,'_edit_last','1'),(1940,37,'_wp_page_template','elementor_canvas'),(1941,37,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1942,37,'_elementor_data','[{\"id\":\"3a368efe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15522298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2807b2e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d9f1540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e8a8a66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"129808a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4cafd0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"faq_schema\":\"yes\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6977017e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3006261c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfe6d1\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"296ee02e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1945,302,'_elementor_edit_mode','builder'),(1963,304,'_elementor_edit_mode','builder'),(1964,304,'_elementor_template_type','wp-page'),(1965,304,'_elementor_version','3.6.2'),(1966,304,'_elementor_pro_version','3.6.4'),(1967,304,'_wp_page_template','elementor_canvas'),(1968,304,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1969,304,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1943,37,'_elementor_page_assets','a:0:{}'),(1972,305,'_elementor_edit_mode','builder'),(1973,305,'_elementor_template_type','wp-page'),(1974,305,'_elementor_version','3.6.2'),(1954,303,'_elementor_edit_mode','builder'),(1955,303,'_elementor_template_type','wp-page'),(1956,303,'_elementor_version','3.6.2'),(1957,303,'_elementor_pro_version','3.6.4'),(1958,303,'_wp_page_template','elementor_canvas'),(1959,303,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1960,303,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264,\"draft\":true},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"}]},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"53398e30\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1961,303,'_elementor_page_assets','a:0:{}'),(1970,304,'_elementor_page_assets','a:0:{}'),(1975,305,'_elementor_pro_version','3.6.4'),(1976,305,'_wp_page_template','elementor_canvas'),(1977,305,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1978,305,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1979,305,'_elementor_page_assets','a:0:{}'),(1980,306,'_elementor_edit_mode','builder'),(1981,306,'_elementor_template_type','wp-page');
INSERT INTO `wpob_postmeta` VALUES (1982,306,'_elementor_version','3.6.2'),(1983,306,'_elementor_pro_version','3.6.4'),(1984,306,'_wp_page_template','elementor_canvas'),(1985,306,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1986,306,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1987,306,'_elementor_page_assets','a:0:{}'),(1988,307,'_elementor_edit_mode','builder'),(1989,307,'_elementor_template_type','wp-page'),(1990,307,'_elementor_version','3.6.2'),(1991,307,'_elementor_pro_version','3.6.4'),(1992,307,'_wp_page_template','elementor_canvas'),(1993,307,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1994,307,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1995,307,'_elementor_page_assets','a:0:{}'),(2010,311,'_elementor_edit_mode','builder'),(2011,311,'_elementor_template_type','wp-page'),(2012,311,'_elementor_version','3.6.2'),(2050,316,'_elementor_edit_mode','builder'),(2026,313,'_elementor_edit_mode','builder'),(2027,313,'_elementor_template_type','wp-page'),(2028,313,'_elementor_version','3.6.2'),(2029,313,'_elementor_pro_version','3.6.4'),(2030,313,'_wp_page_template','elementor_canvas'),(2031,313,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2032,313,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2013,311,'_elementor_pro_version','3.6.4'),(2014,311,'_wp_page_template','elementor_canvas'),(2015,311,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2016,311,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2017,311,'_elementor_page_assets','a:0:{}'),(2018,312,'_elementor_edit_mode','builder'),(2019,312,'_elementor_template_type','wp-page'),(2020,312,'_elementor_version','3.6.2'),(2021,312,'_elementor_pro_version','3.6.4'),(2022,312,'_wp_page_template','elementor_canvas'),(2023,312,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2024,312,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2025,312,'_elementor_page_assets','a:0:{}'),(2033,313,'_elementor_page_assets','a:0:{}'),(2034,314,'_elementor_edit_mode','builder'),(2035,314,'_elementor_template_type','wp-page'),(2036,314,'_elementor_version','3.6.2'),(2037,314,'_elementor_pro_version','3.6.4'),(2038,314,'_wp_page_template','elementor_canvas'),(2039,314,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2040,314,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2041,314,'_elementor_page_assets','a:0:{}'),(2042,315,'_elementor_edit_mode','builder'),(2043,315,'_elementor_template_type','wp-page'),(2044,315,'_elementor_version','3.6.2'),(2045,315,'_elementor_pro_version','3.6.4'),(2046,315,'_wp_page_template','elementor_canvas'),(2047,315,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2048,315,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2049,315,'_elementor_page_assets','a:0:{}'),(2051,316,'_elementor_template_type','wp-page'),(2052,316,'_elementor_version','3.6.2'),(2053,316,'_elementor_pro_version','3.6.4'),(2054,316,'_wp_page_template','elementor_canvas'),(2055,316,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2056,316,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2057,316,'_elementor_page_assets','a:0:{}'),(2698,394,'_elementor_page_assets','a:0:{}'),(2699,395,'_elementor_edit_mode','builder'),(2700,395,'_elementor_template_type','wp-page'),(2701,395,'_elementor_version','3.6.2'),(2702,395,'_elementor_pro_version','3.6.4'),(2703,395,'_wp_page_template','elementor_canvas'),(2704,395,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2705,395,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2706,395,'_elementor_page_assets','a:0:{}'),(2707,396,'_elementor_edit_mode','builder'),(2708,396,'_elementor_template_type','wp-page'),(2709,396,'_elementor_version','3.6.2'),(2710,396,'_elementor_pro_version','3.6.4'),(2711,396,'_wp_page_template','elementor_canvas'),(2712,396,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2713,396,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2580,381,'_elementor_edit_mode','builder'),(2581,381,'_elementor_template_type','wp-page'),(2582,381,'_elementor_version','3.6.2'),(2078,320,'_elementor_edit_mode','builder'),(2079,320,'_elementor_template_type','wp-page'),(2080,320,'_elementor_version','3.6.2'),(2081,320,'_elementor_pro_version','3.6.4'),(2082,320,'_wp_page_template','elementor_canvas'),(2083,320,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2084,320,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Executive Function<\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Issues with Technology<\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Relationships and Family Conflict<\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Creativity and Mastery<\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Body Image and Self-Esteem<\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life Transitions<\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Anxiety and Stress Management<\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Depression<\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Grief and Loss<\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2085,320,'_elementor_page_assets','a:0:{}'),(2087,321,'_elementor_edit_mode','builder'),(2088,321,'_elementor_template_type','wp-page'),(2089,321,'_elementor_version','3.6.2'),(2090,321,'_elementor_pro_version','3.6.4'),(2091,321,'_wp_page_template','elementor_canvas'),(2092,321,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2093,321,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Executive Function<\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Issues with Technology<\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Relationships and Family Conflict<\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Creativity and Mastery<\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Body Image and Self-Esteem<\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life Transitions<\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Anxiety and Stress Management<\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Depression<\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Grief and Loss<\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2094,321,'_elementor_page_assets','a:0:{}'),(2096,322,'_elementor_edit_mode','builder'),(2097,322,'_elementor_template_type','wp-page'),(2098,322,'_elementor_version','3.6.2'),(2099,322,'_elementor_pro_version','3.6.4'),(2100,322,'_wp_page_template','elementor_canvas'),(2101,322,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2102,322,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Executive Function<\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Issues with Technology<\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Relationships and Family Conflict<\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Creativity and Mastery<\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Body Image and Self-Esteem<\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life Transitions<\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Anxiety and Stress Management<\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Depression<\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Grief and Loss<\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2103,322,'_elementor_page_assets','a:0:{}'),(2108,323,'_elementor_pro_version','3.6.4'),(2109,323,'_wp_page_template','elementor_canvas'),(2110,323,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2111,323,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Executive Function<\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Issues with Technology<\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Relationships and Family Conflict<\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Creativity and Mastery<\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Body Image and Self-Esteem<\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life Transitions<\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Anxiety and Stress Management<\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Depression<\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Grief and Loss<\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2112,323,'_elementor_page_assets','a:0:{}'),(2113,324,'_elementor_edit_mode','builder'),(2114,324,'_elementor_template_type','wp-page'),(2115,324,'_elementor_version','3.6.2'),(2116,324,'_elementor_pro_version','3.6.4'),(2117,324,'_wp_page_template','elementor_canvas'),(2118,324,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2119,324,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Executive Function<\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Issues with Technology<\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Relationships and Family Conflict<\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Creativity and Mastery<\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Body Image and Self-Esteem<\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life Transitions<\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Anxiety and Stress Management<\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Depression<\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Grief and Loss<\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2120,324,'_elementor_page_assets','a:0:{}'),(3189,457,'_elementor_template_type','wp-page'),(2121,325,'_elementor_edit_mode','builder'),(2122,325,'_elementor_template_type','wp-page'),(2123,325,'_elementor_version','3.6.2'),(2124,325,'_elementor_pro_version','3.6.4'),(2125,325,'_wp_page_template','elementor_canvas'),(2126,325,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2127,325,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2128,325,'_elementor_page_assets','a:0:{}'),(2129,326,'_elementor_edit_mode','builder'),(2130,326,'_elementor_template_type','wp-page'),(2131,326,'_elementor_version','3.6.2'),(2132,326,'_elementor_pro_version','3.6.4'),(2133,326,'_wp_page_template','elementor_canvas'),(2134,326,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2135,326,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2136,326,'_elementor_page_assets','a:0:{}'),(2137,327,'_elementor_edit_mode','builder'),(2138,327,'_elementor_template_type','wp-page'),(2139,327,'_elementor_version','3.6.2'),(2140,327,'_elementor_pro_version','3.6.4'),(2141,327,'_wp_page_template','elementor_canvas'),(2142,327,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2143,327,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2144,327,'_elementor_page_assets','a:0:{}'),(3188,457,'_elementor_edit_mode','builder'),(2145,328,'_elementor_edit_mode','builder'),(2146,328,'_elementor_template_type','wp-page'),(2147,328,'_elementor_version','3.6.2'),(2148,328,'_elementor_pro_version','3.6.4'),(2149,328,'_wp_page_template','elementor_canvas'),(2150,328,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2151,328,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2152,328,'_elementor_page_assets','a:0:{}'),(2553,378,'_elementor_edit_mode','builder'),(2554,378,'_elementor_template_type','wp-page'),(2555,378,'_elementor_version','3.6.2'),(2154,329,'_elementor_template_type','wp-page'),(2155,329,'_elementor_version','3.6.2'),(2156,329,'_elementor_edit_mode','builder'),(2157,329,'_wp_page_template','elementor_canvas'),(2158,329,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2159,329,'_elementor_page_assets','a:0:{}'),(2160,329,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2161,329,'_elementor_pro_version','3.6.4'),(2163,330,'_elementor_template_type','wp-page'),(2164,330,'_elementor_version','3.6.2'),(2165,330,'_elementor_edit_mode','builder'),(2166,330,'_wp_page_template','elementor_canvas'),(2167,330,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2168,330,'_elementor_page_assets','a:0:{}'),(2169,330,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2170,330,'_elementor_pro_version','3.6.4'),(2172,331,'_elementor_template_type','wp-page'),(2173,331,'_elementor_version','3.6.2'),(2174,331,'_elementor_edit_mode','builder'),(2175,331,'_wp_page_template','elementor_canvas'),(2176,331,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2177,331,'_elementor_page_assets','a:0:{}'),(2178,331,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2179,331,'_elementor_pro_version','3.6.4'),(2182,332,'_elementor_edit_mode','builder'),(2183,332,'_elementor_template_type','wp-page'),(2184,332,'_elementor_version','3.6.2'),(2185,332,'_elementor_pro_version','3.6.4'),(2186,332,'_wp_page_template','elementor_canvas'),(2187,332,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2188,332,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2189,332,'_elementor_page_assets','a:0:{}'),(2191,333,'_elementor_edit_mode','builder'),(2192,333,'_elementor_template_type','wp-page'),(2193,333,'_elementor_version','3.6.2'),(2194,333,'_elementor_pro_version','3.6.4'),(2195,333,'_wp_page_template','elementor_canvas'),(2196,333,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2197,333,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2198,333,'_elementor_page_assets','a:0:{}'),(3166,454,'_elementor_version','3.6.2'),(2200,334,'_elementor_edit_mode','builder'),(2201,334,'_elementor_template_type','wp-page'),(2202,334,'_elementor_version','3.6.2'),(2203,334,'_elementor_pro_version','3.6.4'),(2204,334,'_wp_page_template','elementor_canvas'),(2205,334,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2206,334,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2207,334,'_elementor_page_assets','a:0:{}'),(2210,138,'_elementor_edit_mode','builder'),(2211,138,'_elementor_template_type','wp-page'),(2212,138,'_elementor_version','3.6.2'),(2213,138,'_elementor_pro_version','3.6.4'),(2242,138,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2243,138,'_elementor_data','[{\"id\":\"6c383d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2045199c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"453d5ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b188741\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"142f57aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27a75bd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"78194d97\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"595a3a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Margin notes: A blog comprising commentary on the state of the art and the ecology of mental healthcare provision. Not medical advice, nor intended to replace it or mimick it in any way.<\\/em><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e66f8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4d6cdb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"90ef8f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2244,340,'_elementor_edit_mode','builder'),(2245,340,'_elementor_template_type','wp-page'),(2246,340,'_elementor_version','3.6.2'),(2247,340,'_elementor_pro_version','3.6.4'),(2248,340,'_wp_page_template','elementor_canvas'),(2249,340,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2250,340,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.3020000000000067075234255753457546234130859375},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2241,138,'_wp_page_template','elementor_canvas'),(2258,341,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.3020000000000067075234255753457546234130859375},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2259,341,'_elementor_page_assets','a:0:{}'),(2260,342,'_elementor_edit_mode','builder'),(2261,342,'_elementor_template_type','wp-page'),(2262,342,'_elementor_version','3.6.2'),(2263,342,'_elementor_pro_version','3.6.4'),(2264,342,'_wp_page_template','elementor_canvas'),(2265,342,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2266,342,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.3020000000000067075234255753457546234130859375},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2267,342,'_elementor_page_assets','a:0:{}'),(2268,343,'_elementor_edit_mode','builder'),(2269,343,'_elementor_template_type','wp-page'),(2270,343,'_elementor_version','3.6.2'),(2271,343,'_elementor_pro_version','3.6.4'),(2272,343,'_wp_page_template','elementor_canvas'),(2273,343,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2274,343,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2252,341,'_elementor_edit_mode','builder'),(2275,343,'_elementor_page_assets','a:0:{}'),(2276,344,'_elementor_edit_mode','builder'),(2277,344,'_elementor_template_type','wp-page'),(2278,344,'_elementor_version','3.6.2'),(2279,344,'_elementor_pro_version','3.6.4'),(2280,344,'_wp_page_template','elementor_canvas'),(2281,344,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2282,344,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2283,344,'_elementor_page_assets','a:0:{}'),(2284,345,'_elementor_edit_mode','builder'),(2285,345,'_elementor_template_type','wp-page'),(2286,345,'_elementor_version','3.6.2'),(2287,345,'_elementor_pro_version','3.6.4'),(2288,345,'_wp_page_template','elementor_canvas'),(2289,345,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2290,345,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2291,345,'_elementor_page_assets','a:0:{}'),(2292,346,'_elementor_edit_mode','builder'),(2293,346,'_elementor_template_type','wp-page'),(2294,346,'_elementor_version','3.6.2'),(2295,346,'_elementor_pro_version','3.6.4'),(2296,346,'_wp_page_template','elementor_canvas'),(2297,346,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2298,346,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2299,346,'_elementor_page_assets','a:0:{}'),(2300,347,'_elementor_edit_mode','builder'),(2301,347,'_elementor_template_type','wp-page'),(2302,347,'_elementor_version','3.6.2'),(2303,347,'_elementor_pro_version','3.6.4'),(2304,347,'_wp_page_template','elementor_canvas'),(2305,347,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2306,347,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2307,347,'_elementor_page_assets','a:0:{}'),(2308,348,'_elementor_edit_mode','builder'),(2309,348,'_elementor_template_type','wp-page'),(2310,348,'_elementor_version','3.6.2'),(2311,348,'_elementor_pro_version','3.6.4'),(2312,348,'_wp_page_template','elementor_canvas'),(2313,348,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2314,348,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Me<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2315,348,'_elementor_page_assets','a:0:{}'),(2316,349,'_elementor_edit_mode','builder'),(2317,349,'_elementor_template_type','wp-page'),(2318,349,'_elementor_version','3.6.2'),(2319,349,'_elementor_pro_version','3.6.4'),(2320,349,'_wp_page_template','elementor_canvas'),(2321,349,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2322,349,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2323,349,'_elementor_page_assets','a:0:{}'),(2324,350,'_elementor_edit_mode','builder'),(2325,350,'_elementor_template_type','wp-page'),(2326,350,'_elementor_version','3.6.2'),(2327,350,'_elementor_pro_version','3.6.4'),(2328,350,'_wp_page_template','elementor_canvas'),(2329,350,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2330,350,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2331,350,'_elementor_page_assets','a:0:{}'),(2332,351,'_elementor_edit_mode','builder'),(2333,351,'_elementor_template_type','wp-page'),(2334,351,'_elementor_version','3.6.2'),(2335,351,'_elementor_pro_version','3.6.4'),(2336,351,'_wp_page_template','elementor_canvas'),(2337,351,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2338,351,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2339,351,'_elementor_page_assets','a:0:{}'),(2340,352,'_elementor_edit_mode','builder'),(2341,352,'_elementor_template_type','wp-page'),(2342,352,'_elementor_version','3.6.2'),(2343,352,'_elementor_pro_version','3.6.4'),(2344,352,'_wp_page_template','elementor_canvas'),(2345,352,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2346,352,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2347,352,'_elementor_page_assets','a:0:{}'),(2349,353,'_elementor_edit_mode','builder'),(2350,353,'_elementor_template_type','wp-page'),(2351,353,'_elementor_version','3.6.2'),(2352,353,'_elementor_pro_version','3.6.4'),(2353,353,'_wp_page_template','elementor_canvas'),(2354,353,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2355,353,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2356,353,'_elementor_page_assets','a:0:{}'),(3216,460,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:4:\"Lora\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:7:\"Georgia\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(2358,354,'_elementor_edit_mode','builder'),(2359,354,'_elementor_template_type','wp-page'),(2360,354,'_elementor_version','3.6.2'),(2361,354,'_elementor_pro_version','3.6.4'),(2362,354,'_wp_page_template','elementor_canvas'),(2363,354,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2364,354,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2365,354,'_elementor_page_assets','a:0:{}'),(3212,459,'_elementor_pro_version','3.6.4'),(3213,460,'_elementor_edit_mode','builder'),(3214,460,'_elementor_template_type','kit'),(3215,460,'_wp_page_template','default'),(2867,416,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2367,355,'_elementor_edit_mode','builder'),(2368,355,'_elementor_template_type','wp-page'),(2369,355,'_elementor_version','3.6.2'),(2370,355,'_elementor_pro_version','3.6.4'),(2371,355,'_wp_page_template','elementor_canvas'),(2372,355,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2373,355,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2374,355,'_elementor_page_assets','a:0:{}'),(3209,459,'_elementor_data','[]'),(3210,459,'_elementor_page_assets','a:0:{}'),(3211,459,'_elementor_version','3.6.2'),(3532,502,'_elementor_version','3.6.2'),(3533,502,'_elementor_edit_mode','builder'),(3534,502,'_wp_page_template','elementor_canvas'),(3535,502,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b01fe2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b85a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3536,502,'_elementor_page_assets','a:0:{}'),(3537,502,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3538,502,'_elementor_pro_version','3.6.4'),(3539,503,'_elementor_template_type','wp-page'),(3540,503,'_elementor_version','3.6.2'),(3541,503,'_elementor_edit_mode','builder'),(3542,503,'_wp_page_template','elementor_canvas'),(3543,503,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b01fe2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b85a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3531,502,'_elementor_template_type','wp-page'),(2607,384,'_elementor_template_type','wp-page'),(2608,384,'_elementor_version','3.6.2'),(2609,384,'_elementor_edit_mode','builder'),(2610,384,'_elementor_pro_version','3.6.4'),(2396,39,'_elementor_edit_mode','builder'),(2397,39,'_elementor_pro_version','3.6.4'),(2419,362,'_elementor_edit_mode','builder'),(2418,362,'_elementor_version','3.6.2'),(2417,362,'_elementor_template_type','wp-page'),(2415,39,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2416,39,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"373d226\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"480\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11cd9af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8011612\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ed5ead9\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can use the form to contact me to learn more and book a consultation.<\\/p><p><span style=\\\"text-decoration: underline;\\\"><strong>Office Address<\\/strong><\\/span><br \\/>The Therapy Center for Mind and Body<br \\/>1234 Broadway<br \\/>Somerville, MA<\\/p><p>My office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.<\\/p><p><strong><u>Transportation<\\/u><\\/strong><\\/p><p><strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<\\/p><p><strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<\\/p><p><strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center.<\\/p><p><em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"71e775ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"264cdb5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e65d6cc\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2414,39,'_wp_page_template','elementor_canvas'),(2406,360,'_elementor_template_type','wp-page'),(2407,360,'_elementor_version','3.6.2'),(2408,360,'_elementor_edit_mode','builder'),(2409,360,'_elementor_pro_version','3.6.4'),(2410,361,'_elementor_template_type','wp-page'),(2411,361,'_elementor_version','3.6.2'),(2412,361,'_elementor_edit_mode','builder'),(2413,361,'_elementor_pro_version','3.6.4'),(2420,362,'_elementor_pro_version','3.6.4'),(2421,362,'_wp_page_template','elementor_canvas'),(2422,362,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2423,362,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2424,39,'_elementor_page_assets','a:0:{}'),(3176,455,'_wp_page_template','elementor_canvas'),(3175,455,'_elementor_pro_version','3.6.4'),(3174,455,'_elementor_version','3.6.2'),(2426,363,'_elementor_template_type','wp-page'),(2427,363,'_elementor_version','3.6.2'),(2428,363,'_elementor_edit_mode','builder'),(2429,363,'_wp_page_template','elementor_canvas'),(2430,363,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2431,363,'_elementor_page_assets','a:0:{}'),(2432,363,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2433,363,'_elementor_pro_version','3.6.4'),(2435,364,'_elementor_template_type','wp-page'),(2436,364,'_elementor_version','3.6.2'),(2437,364,'_elementor_edit_mode','builder'),(2438,364,'_wp_page_template','elementor_canvas'),(2439,364,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">The Team<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Training and Experience<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2440,364,'_elementor_page_assets','a:0:{}'),(2441,364,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2442,364,'_elementor_pro_version','3.6.4'),(2444,365,'_elementor_template_type','wp-page'),(2445,365,'_elementor_version','3.6.2'),(2446,365,'_elementor_edit_mode','builder'),(2447,365,'_wp_page_template','elementor_canvas'),(2448,365,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2449,365,'_elementor_page_assets','a:0:{}'),(2450,365,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2451,365,'_elementor_pro_version','3.6.4'),(2456,366,'_wp_page_template','elementor_canvas'),(2457,366,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2458,366,'_elementor_page_assets','a:0:{}'),(2459,366,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2460,366,'_elementor_pro_version','3.6.4'),(2461,367,'_elementor_template_type','wp-page'),(2462,367,'_elementor_version','3.6.2'),(2463,367,'_elementor_edit_mode','builder'),(2464,367,'_wp_page_template','elementor_canvas'),(2465,367,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2466,367,'_elementor_page_assets','a:0:{}'),(2467,367,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2468,367,'_elementor_pro_version','3.6.4'),(2469,368,'_elementor_template_type','wp-page'),(2470,368,'_elementor_version','3.6.2'),(2471,368,'_elementor_edit_mode','builder'),(2472,368,'_wp_page_template','elementor_canvas'),(2473,368,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2474,368,'_elementor_page_assets','a:0:{}'),(2475,368,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2476,368,'_elementor_pro_version','3.6.4'),(2477,369,'_elementor_template_type','wp-page'),(2478,369,'_elementor_version','3.6.2'),(2479,369,'_elementor_edit_mode','builder'),(2480,369,'_wp_page_template','elementor_canvas'),(2481,369,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2482,369,'_elementor_page_assets','a:0:{}'),(2483,369,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2484,369,'_elementor_pro_version','3.6.4'),(2485,370,'_elementor_template_type','wp-page'),(2486,370,'_elementor_version','3.6.2'),(2487,370,'_elementor_edit_mode','builder'),(2488,370,'_wp_page_template','elementor_canvas'),(2489,370,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2490,370,'_elementor_page_assets','a:0:{}'),(2491,370,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2492,370,'_elementor_pro_version','3.6.4'),(2493,371,'_elementor_template_type','wp-page'),(2494,371,'_elementor_version','3.6.2'),(2495,371,'_elementor_edit_mode','builder'),(2496,371,'_wp_page_template','elementor_canvas'),(2497,371,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2498,371,'_elementor_page_assets','a:0:{}'),(2499,371,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2500,371,'_elementor_pro_version','3.6.4'),(2501,372,'_elementor_template_type','wp-page'),(2502,372,'_elementor_version','3.6.2'),(2503,372,'_elementor_edit_mode','builder'),(2504,372,'_wp_page_template','elementor_canvas'),(2505,372,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2506,372,'_elementor_page_assets','a:0:{}'),(2507,372,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2508,372,'_elementor_pro_version','3.6.4'),(2509,373,'_elementor_template_type','wp-page'),(2510,373,'_elementor_version','3.6.2'),(2511,373,'_elementor_edit_mode','builder'),(2512,373,'_wp_page_template','elementor_canvas'),(2513,373,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2514,373,'_elementor_page_assets','a:0:{}'),(2515,373,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2516,373,'_elementor_pro_version','3.6.4'),(3285,469,'_elementor_template_type','wp-page'),(3055,441,'_elementor_template_type','wp-page'),(3056,441,'_elementor_version','3.6.2'),(3057,441,'_elementor_edit_mode','builder'),(3058,441,'_wp_page_template','elementor_canvas'),(3059,441,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"color_menu_item_hover\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2517,374,'_elementor_template_type','wp-page'),(2518,374,'_elementor_version','3.6.2'),(2519,374,'_elementor_edit_mode','builder'),(2520,374,'_wp_page_template','elementor_canvas'),(2521,374,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2522,374,'_elementor_page_assets','a:0:{}'),(2523,374,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2524,374,'_elementor_pro_version','3.6.4'),(3030,437,'_elementor_edit_mode','builder'),(3031,437,'_elementor_template_type','single-page'),(3032,438,'_elementor_edit_mode','builder'),(2526,375,'_elementor_edit_mode','builder'),(2527,375,'_elementor_template_type','wp-page'),(2528,375,'_elementor_version','3.6.2'),(2529,375,'_elementor_pro_version','3.6.4'),(2530,375,'_wp_page_template','elementor_canvas'),(2531,375,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2532,375,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2533,375,'_elementor_page_assets','a:0:{}'),(2535,376,'_elementor_edit_mode','builder'),(2536,376,'_elementor_template_type','wp-page'),(2537,376,'_elementor_version','3.6.2'),(2538,376,'_elementor_pro_version','3.6.4'),(2539,376,'_wp_page_template','elementor_canvas'),(2540,376,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2541,376,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2542,376,'_elementor_page_assets','a:0:{}'),(2544,377,'_elementor_edit_mode','builder'),(2545,377,'_elementor_template_type','wp-page'),(2546,377,'_elementor_version','3.6.2'),(2547,377,'_elementor_pro_version','3.6.4'),(2548,377,'_wp_page_template','elementor_canvas'),(2549,377,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2550,377,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2551,377,'_elementor_page_assets','a:0:{}'),(2556,378,'_elementor_pro_version','3.6.4'),(2557,378,'_wp_page_template','elementor_canvas'),(2558,378,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2559,378,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2560,378,'_elementor_page_assets','a:0:{}'),(2562,379,'_elementor_edit_mode','builder'),(2563,379,'_elementor_template_type','wp-page'),(2564,379,'_elementor_version','3.6.2'),(2565,379,'_elementor_pro_version','3.6.4'),(2566,379,'_wp_page_template','elementor_canvas'),(2567,379,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2568,379,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2569,379,'_elementor_page_assets','a:0:{}'),(3164,454,'_elementor_edit_mode','builder'),(3165,454,'_elementor_template_type','wp-page'),(2571,380,'_elementor_edit_mode','builder'),(2572,380,'_elementor_template_type','wp-page'),(2573,380,'_elementor_version','3.6.2'),(2574,380,'_elementor_pro_version','3.6.4'),(2575,380,'_wp_page_template','elementor_canvas'),(2576,380,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2577,380,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2578,380,'_elementor_page_assets','a:0:{}'),(2583,381,'_elementor_pro_version','3.6.4'),(2584,381,'_wp_page_template','elementor_canvas'),(2585,381,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2586,381,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2587,381,'_elementor_page_assets','a:0:{}'),(2589,382,'_elementor_edit_mode','builder'),(2590,382,'_elementor_template_type','wp-page'),(2591,382,'_elementor_version','3.6.2'),(2592,382,'_elementor_pro_version','3.6.4'),(2593,382,'_wp_page_template','elementor_canvas'),(2594,382,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2595,382,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2596,382,'_elementor_page_assets','a:0:{}'),(2865,416,'_wp_page_template','elementor_canvas'),(2866,416,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2598,383,'_elementor_edit_mode','builder'),(2599,383,'_elementor_template_type','wp-page'),(2600,383,'_elementor_version','3.6.2'),(2601,383,'_elementor_pro_version','3.6.4'),(2602,383,'_wp_page_template','elementor_canvas'),(2603,383,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2604,383,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2605,383,'_elementor_page_assets','a:0:{}'),(2611,384,'_wp_page_template','elementor_canvas'),(2612,384,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2613,384,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2614,384,'_elementor_page_assets','a:0:{}'),(2616,385,'_elementor_template_type','wp-page'),(2617,385,'_elementor_version','3.6.2'),(2618,385,'_elementor_edit_mode','builder'),(2619,385,'_elementor_pro_version','3.6.4'),(2620,385,'_wp_page_template','elementor_canvas'),(2621,385,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2622,385,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/p>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h1>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2623,385,'_elementor_page_assets','a:0:{}'),(2625,386,'_elementor_template_type','wp-page'),(2626,386,'_elementor_version','3.6.2'),(2627,386,'_elementor_edit_mode','builder'),(2628,386,'_elementor_pro_version','3.6.4'),(2629,386,'_wp_page_template','elementor_canvas'),(2630,386,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2631,386,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2632,386,'_elementor_page_assets','a:0:{}'),(3151,452,'_elementor_pro_version','3.6.4'),(3150,452,'_elementor_version','3.6.2'),(3149,452,'_elementor_template_type','wp-page'),(2792,407,'_elementor_template_type','wp-page'),(2793,407,'_elementor_version','3.6.2'),(2794,407,'_elementor_edit_mode','builder'),(2795,407,'_elementor_pro_version','3.6.4'),(2714,396,'_elementor_page_assets','a:0:{}'),(2715,397,'_elementor_edit_mode','builder'),(2716,397,'_elementor_template_type','wp-page'),(2717,397,'_elementor_version','3.6.2'),(2718,397,'_elementor_pro_version','3.6.4'),(2719,397,'_wp_page_template','elementor_canvas'),(2720,397,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2721,397,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2722,397,'_elementor_page_assets','a:0:{}'),(2723,398,'_elementor_edit_mode','builder'),(2724,398,'_elementor_template_type','wp-page'),(2725,398,'_elementor_version','3.6.2'),(2726,398,'_elementor_pro_version','3.6.4'),(2727,398,'_wp_page_template','elementor_canvas'),(2728,398,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2729,398,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2730,398,'_elementor_page_assets','a:0:{}'),(2731,399,'_elementor_edit_mode','builder'),(2732,399,'_elementor_template_type','wp-page'),(2733,399,'_elementor_version','3.6.2'),(2734,399,'_elementor_pro_version','3.6.4'),(2735,399,'_wp_page_template','elementor_canvas'),(2736,399,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2737,399,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2738,399,'_elementor_page_assets','a:0:{}'),(2739,400,'_elementor_edit_mode','builder'),(2740,400,'_elementor_template_type','wp-page'),(2741,400,'_elementor_version','3.6.2'),(2742,400,'_elementor_pro_version','3.6.4'),(2743,400,'_wp_page_template','elementor_canvas'),(2744,400,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2745,400,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2746,400,'_elementor_page_assets','a:0:{}'),(2747,401,'_elementor_edit_mode','builder'),(2748,401,'_elementor_template_type','wp-page'),(2749,401,'_elementor_version','3.6.2'),(2750,401,'_elementor_pro_version','3.6.4'),(2751,401,'_wp_page_template','elementor_canvas'),(2752,401,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2753,401,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2754,401,'_elementor_page_assets','a:0:{}'),(2861,416,'_elementor_edit_mode','builder'),(2755,402,'_elementor_edit_mode','builder'),(2756,402,'_elementor_template_type','wp-page'),(2757,402,'_elementor_version','3.6.2'),(2758,402,'_elementor_pro_version','3.6.4'),(2759,402,'_wp_page_template','elementor_canvas'),(2760,402,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2761,402,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2762,402,'_elementor_page_assets','a:0:{}'),(2956,428,'_elementor_data','[{\"id\":\"305bb2c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d4bd1a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16bbab94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:heading -->\\n<h2>Test<\\/h2>\\n<!-- \\/wp:heading -->\\n\\n<!-- wp:paragraph -->\\n<p>This is a test post.<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2856,415,'_elementor_pro_version','3.6.4'),(2857,415,'_wp_page_template','elementor_canvas'),(2858,415,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2859,415,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2845,414,'_elementor_edit_mode','builder'),(2846,414,'_elementor_template_type','wp-page'),(2847,414,'_elementor_version','3.6.2'),(2848,414,'_elementor_pro_version','3.6.4'),(2849,414,'_wp_page_template','elementor_canvas'),(2850,414,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2851,414,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6360df61\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"1960b208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4907fbf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2747792f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"114616a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"581a62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b42644\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5afd5a95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2051576\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"98896ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8303ba6\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcb3041\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"b8a2750\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"0afee33\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"a40c99f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a500b69\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5b32aba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4399388\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"75ccead4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2852,414,'_elementor_page_assets','a:0:{}'),(2853,415,'_elementor_edit_mode','builder'),(2854,415,'_elementor_template_type','wp-page'),(2855,415,'_elementor_version','3.6.2'),(2812,409,'_wp_page_template','elementor_canvas'),(2813,409,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2814,409,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"324ed5e8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3715,525,'_elementor_template_type','wp-page'),(3716,525,'_elementor_version','3.6.2'),(3717,525,'_elementor_edit_mode','builder'),(3718,525,'_elementor_pro_version','3.6.4'),(3719,525,'_wp_page_template','elementor_canvas'),(3720,525,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3721,525,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"373d226\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"480\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11cd9af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8011612\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ed5ead9\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can use the form to contact me to learn more and book a consultation.<\\/p><p><span style=\\\"text-decoration: underline;\\\"><strong>Office Address<\\/strong><\\/span><br \\/>The Therapy Center for Mind and Body<br \\/>1234 Broadway<br \\/>Somerville, MA<\\/p><p>My office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.<\\/p><p><strong><u>Transportation<\\/u><\\/strong><\\/p><p><strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<\\/p><p><strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<\\/p><p><strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center.<\\/p><p><em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"71e775ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"264cdb5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e65d6cc\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3417,486,'_elementor_template_type','wp-page'),(3418,486,'_elementor_version','3.6.2'),(3419,486,'_elementor_edit_mode','builder'),(3420,486,'_elementor_pro_version','3.6.4'),(3421,486,'_wp_page_template','elementor_canvas'),(3116,448,'_elementor_template_type','wp-page'),(3117,448,'_elementor_version','3.6.2'),(2808,409,'_elementor_template_type','wp-page'),(2809,409,'_elementor_version','3.6.2'),(2810,409,'_elementor_edit_mode','builder'),(2811,409,'_elementor_pro_version','3.6.4'),(2796,407,'_wp_page_template','elementor_canvas'),(2797,407,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2798,407,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2799,407,'_elementor_page_assets','a:0:{}'),(2800,408,'_elementor_template_type','wp-page'),(2801,408,'_elementor_version','3.6.2'),(2802,408,'_elementor_edit_mode','builder'),(2803,408,'_elementor_pro_version','3.6.4'),(2804,408,'_wp_page_template','elementor_canvas'),(2805,408,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2806,408,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2807,408,'_elementor_page_assets','a:0:{}'),(2815,409,'_elementor_page_assets','a:0:{}'),(2893,420,'_elementor_edit_mode','builder'),(2894,420,'_elementor_template_type','wp-page'),(2895,420,'_elementor_version','3.6.2'),(2896,420,'_elementor_pro_version','3.6.4'),(2897,420,'_wp_page_template','elementor_canvas'),(2898,420,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2899,420,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p><p>A: Apocrypha, commentary and occasional thoughts on the state of the field, et&amp;c. Not to be taken as gospel or directed advice.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Tags\",\"taxonomy\":\"post_tag\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2879,418,'_elementor_version','3.6.2'),(2880,418,'_elementor_pro_version','3.6.4'),(2881,418,'_wp_page_template','elementor_canvas'),(2882,418,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2883,418,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2868,416,'_elementor_page_assets','a:0:{}'),(2860,415,'_elementor_page_assets','a:0:{}'),(2884,418,'_elementor_page_assets','a:0:{}'),(2885,419,'_elementor_edit_mode','builder'),(2886,419,'_elementor_template_type','wp-page'),(2887,419,'_elementor_version','3.6.2'),(2888,419,'_elementor_pro_version','3.6.4'),(2889,419,'_wp_page_template','elementor_canvas'),(2890,419,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2891,419,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2892,419,'_elementor_page_assets','a:0:{}'),(2900,420,'_elementor_page_assets','a:0:{}'),(2878,418,'_elementor_template_type','wp-page'),(2955,428,'_wp_page_template','default'),(2953,428,'_elementor_version','3.6.2'),(2954,428,'_elementor_pro_version','3.6.4'),(2925,424,'_elementor_edit_mode','builder'),(2926,424,'_elementor_template_type','wp-page'),(2927,424,'_elementor_version','3.6.2'),(2928,424,'_elementor_pro_version','3.6.4'),(2929,424,'_wp_page_template','elementor_canvas'),(2930,424,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2931,424,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Tags\",\"taxonomy\":\"post_tag\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2909,422,'_elementor_edit_mode','builder'),(2910,422,'_elementor_template_type','wp-page'),(2911,422,'_elementor_version','3.6.2'),(2912,422,'_elementor_pro_version','3.6.4'),(2913,422,'_wp_page_template','elementor_canvas'),(2914,422,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2915,422,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p><p>A: Apocrypha, commentary and occasional thoughts on the state of the field, et&amp;c. Not to be taken as gospel or directed advice.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Tags\",\"taxonomy\":\"post_tag\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2916,422,'_elementor_page_assets','a:0:{}'),(2917,423,'_elementor_edit_mode','builder'),(2918,423,'_elementor_template_type','wp-page'),(2919,423,'_elementor_version','3.6.2'),(2920,423,'_elementor_pro_version','3.6.4'),(2921,423,'_wp_page_template','elementor_canvas'),(2922,423,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2923,423,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p><p>A: Apocrypha, commentary and occasional thoughts on the state of the field, et&amp;c. Not to be taken as gospel or directed advice.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Tags\",\"taxonomy\":\"post_tag\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2924,423,'_elementor_page_assets','a:0:{}'),(2932,424,'_elementor_page_assets','a:0:{}'),(2971,430,'_elementor_edit_mode','builder'),(2972,430,'_elementor_template_type','wp-page'),(2973,430,'_elementor_version','3.6.2'),(2974,430,'_elementor_pro_version','3.6.4'),(2934,425,'_edit_lock','1649351378:1'),(3100,446,'_elementor_template_type','wp-page'),(3101,446,'_elementor_version','3.6.2'),(3102,446,'_elementor_edit_mode','builder'),(3103,446,'_elementor_pro_version','3.6.4'),(2936,425,'_elementor_edit_mode','builder'),(2937,425,'_elementor_template_type','wp-post'),(2938,425,'_elementor_version','3.6.2'),(2939,425,'_elementor_pro_version','3.6.4'),(2941,426,'_elementor_edit_mode','builder'),(2942,426,'_elementor_template_type','wp-post'),(2943,426,'_elementor_version','3.6.2'),(2944,426,'_elementor_pro_version','3.6.4'),(2945,427,'_elementor_edit_mode','builder'),(2946,427,'_elementor_template_type','wp-post'),(2947,427,'_elementor_version','3.6.2'),(2948,427,'_elementor_pro_version','3.6.4'),(2949,425,'_wp_page_template','default'),(2950,425,'_elementor_data','[{\"id\":\"305bb2c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d4bd1a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16bbab94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:heading -->\\n<h2>Test<\\/h2>\\n<!-- \\/wp:heading -->\\n\\n<!-- wp:paragraph -->\\n<p>This is a test post.<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2951,428,'_elementor_edit_mode','builder'),(2952,428,'_elementor_template_type','wp-post'),(2877,418,'_elementor_edit_mode','builder'),(2957,425,'_elementor_page_assets','a:0:{}'),(2959,425,'_wp_trash_meta_status','publish'),(2960,425,'_wp_trash_meta_time','1649351423'),(2961,425,'_wp_desired_post_slug','425'),(2991,432,'_wp_page_template','elementor_canvas'),(2992,432,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2993,432,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\"},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2990,432,'_elementor_pro_version','3.6.4'),(2987,432,'_elementor_edit_mode','builder'),(2988,432,'_elementor_template_type','wp-page'),(2989,432,'_elementor_version','3.6.2'),(2975,430,'_wp_page_template','elementor_canvas'),(2976,430,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2977,430,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Tags\",\"taxonomy\":\"post_tag\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2978,430,'_elementor_page_assets','a:0:{}'),(2979,431,'_elementor_edit_mode','builder'),(2980,431,'_elementor_template_type','wp-page'),(2981,431,'_elementor_version','3.6.2'),(2982,431,'_elementor_pro_version','3.6.4'),(2983,431,'_wp_page_template','elementor_canvas'),(2984,431,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2985,431,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_on_click\",\"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\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"b967c7b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Tags\",\"taxonomy\":\"post_tag\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2986,431,'_elementor_page_assets','a:0:{}'),(2994,432,'_elementor_page_assets','a:0:{}'),(2995,433,'_elementor_edit_mode','builder'),(2996,433,'_elementor_template_type','wp-page'),(2997,433,'_elementor_version','3.6.2'),(2998,433,'_elementor_pro_version','3.6.4'),(2999,433,'_wp_page_template','elementor_canvas'),(3000,433,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3001,433,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\"},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3002,433,'_elementor_page_assets','a:0:{}'),(3003,434,'_elementor_edit_mode','builder'),(3004,434,'_elementor_template_type','wp-page'),(3005,434,'_elementor_version','3.6.2'),(3006,434,'_elementor_pro_version','3.6.4'),(3007,434,'_wp_page_template','elementor_canvas'),(3008,434,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3009,434,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\"},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3010,434,'_elementor_page_assets','a:0:{}'),(3140,451,'_elementor_edit_mode','builder'),(3141,451,'_elementor_template_type','wp-page'),(3011,435,'_elementor_edit_mode','builder'),(3012,435,'_elementor_template_type','wp-page'),(3013,435,'_elementor_version','3.6.2'),(3014,435,'_elementor_pro_version','3.6.4'),(3015,435,'_wp_page_template','elementor_canvas'),(3016,435,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3017,435,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3018,435,'_elementor_page_assets','a:0:{}'),(3127,449,'_elementor_pro_version','3.6.4'),(3126,449,'_elementor_version','3.6.2'),(3125,449,'_elementor_template_type','wp-page'),(3198,458,'_wp_page_template','default'),(3199,458,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:8:{i:0;a:3:{s:5:\"title\";s:11:\"Global text\";s:3:\"_id\";s:7:\"3b450aa\";s:5:\"color\";s:7:\"#4B4C4C\";}i:1;a:2:{s:3:\"_id\";s:7:\"522b3ce\";s:5:\"title\";s:4:\"Nope\";}i:2;a:3:{s:3:\"_id\";s:7:\"8de9cc6\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:9:\"#00000000\";}i:3;a:3:{s:3:\"_id\";s:7:\"2e8c5c6\";s:5:\"title\";s:19:\"Contrast Background\";s:5:\"color\";s:7:\"#9ADCAD\";}i:4;a:3:{s:3:\"_id\";s:7:\"cd6f3c7\";s:5:\"title\";s:10:\"Contrast 2\";s:5:\"color\";s:9:\"#40AF815E\";}i:5;a:3:{s:3:\"_id\";s:7:\"7f20cba\";s:5:\"title\";s:15:\"background grey\";s:5:\"color\";s:9:\"#1D283E63\";}i:6;a:3:{s:3:\"_id\";s:7:\"e2c6be8\";s:5:\"title\";s:16:\"background green\";s:5:\"color\";s:9:\"#79BCA0A6\";}i:7;a:3:{s:3:\"_id\";s:7:\"0fdc6c7\";s:5:\"title\";s:23:\"background light yellow\";s:5:\"color\";s:9:\"#37383212\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:4:\"Lora\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:7:\"Georgia\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(3197,458,'_elementor_template_type','kit'),(3060,441,'_elementor_page_assets','a:0:{}'),(3061,441,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3062,441,'_elementor_pro_version','3.6.4'),(3033,438,'_elementor_template_type','single-page'),(3034,437,'_elementor_template_sub_type','page'),(3035,437,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/page\";}'),(3036,437,'_elementor_version','3.6.2'),(3037,437,'_elementor_pro_version','3.6.4'),(3038,437,'_edit_lock','1649422377:1'),(3039,439,'_elementor_template_type','wp-page'),(3040,439,'_elementor_version','3.6.2'),(3041,439,'_elementor_edit_mode','builder'),(3042,439,'_wp_page_template','elementor_canvas'),(3043,439,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3044,439,'_elementor_page_assets','a:0:{}'),(3045,439,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3046,439,'_elementor_pro_version','3.6.4'),(3047,440,'_elementor_template_type','wp-page'),(3048,440,'_elementor_version','3.6.2'),(3049,440,'_elementor_edit_mode','builder'),(3050,440,'_wp_page_template','elementor_canvas'),(3051,440,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br \\/><\\/span><\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\">\\u00a0<\\/p><p class=\\\"font_9\\\" style=\\\"line-height: 1.875em; font-size: 15px;\\\"><span class=\\\"color_15\\\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/span><\\/p><\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3052,440,'_elementor_page_assets','a:0:{}'),(3053,440,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3054,440,'_elementor_pro_version','3.6.4'),(3196,458,'_elementor_edit_mode','builder'),(3195,457,'_elementor_page_assets','a:0:{}'),(3194,457,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#146E4882\"},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3173,455,'_elementor_template_type','wp-page'),(3172,455,'_elementor_edit_mode','builder'),(3193,457,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3190,457,'_elementor_version','3.6.2'),(3191,457,'_elementor_pro_version','3.6.4'),(3192,457,'_wp_page_template','elementor_canvas'),(3171,454,'_elementor_page_assets','a:0:{}'),(3170,454,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3148,452,'_elementor_edit_mode','builder'),(3167,454,'_elementor_pro_version','3.6.4'),(3168,454,'_wp_page_template','elementor_canvas'),(3169,454,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3147,451,'_elementor_page_assets','a:0:{}'),(3146,451,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3124,449,'_elementor_edit_mode','builder'),(3145,451,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3142,451,'_elementor_version','3.6.2'),(3143,451,'_elementor_pro_version','3.6.4'),(3144,451,'_wp_page_template','elementor_canvas'),(3123,448,'_elementor_page_assets','a:0:{}'),(3122,448,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"324ed5e8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3104,446,'_wp_page_template','elementor_canvas'),(3121,448,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3118,448,'_elementor_edit_mode','builder'),(3119,448,'_elementor_pro_version','3.6.4'),(3120,448,'_wp_page_template','elementor_canvas'),(3105,446,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3106,446,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"324ed5e8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpob_postmeta` VALUES (3107,446,'_elementor_page_assets','a:0:{}'),(3108,447,'_elementor_template_type','wp-page'),(3109,447,'_elementor_version','3.6.2'),(3110,447,'_elementor_edit_mode','builder'),(3111,447,'_elementor_pro_version','3.6.4'),(3112,447,'_wp_page_template','elementor_canvas'),(3113,447,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3114,447,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"324ed5e8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3115,447,'_elementor_page_assets','a:0:{}'),(3128,449,'_wp_page_template','elementor_canvas'),(3129,449,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3130,449,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3131,449,'_elementor_page_assets','a:0:{}'),(3132,450,'_elementor_edit_mode','builder'),(3133,450,'_elementor_template_type','wp-page'),(3134,450,'_elementor_version','3.6.2'),(3135,450,'_elementor_pro_version','3.6.4'),(3136,450,'_wp_page_template','elementor_canvas'),(3137,450,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3138,450,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3139,450,'_elementor_page_assets','a:0:{}'),(3152,452,'_wp_page_template','elementor_canvas'),(3153,452,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3154,452,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3155,452,'_elementor_page_assets','a:0:{}'),(3156,453,'_elementor_edit_mode','builder'),(3157,453,'_elementor_template_type','wp-page'),(3158,453,'_elementor_version','3.6.2'),(3159,453,'_elementor_pro_version','3.6.4'),(3160,453,'_wp_page_template','elementor_canvas'),(3161,453,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3162,453,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3163,453,'_elementor_page_assets','a:0:{}'),(3177,455,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3178,455,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3179,455,'_elementor_page_assets','a:0:{}'),(3180,456,'_elementor_edit_mode','builder'),(3181,456,'_elementor_template_type','wp-page'),(3182,456,'_elementor_version','3.6.2'),(3183,456,'_elementor_pro_version','3.6.4'),(3184,456,'_wp_page_template','elementor_canvas'),(3185,456,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3186,456,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3187,456,'_elementor_page_assets','a:0:{}'),(3200,458,'_elementor_data','[]'),(3201,458,'_elementor_page_assets','a:0:{}'),(3202,458,'_elementor_version','3.5.5'),(3203,458,'_elementor_pro_version','3.6.2'),(3205,459,'_elementor_edit_mode','builder'),(3206,459,'_elementor_template_type','kit'),(3207,459,'_wp_page_template','default'),(3208,459,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:8:\"Alegreya\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:4:\"Lora\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:7:\"Georgia\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:1:{i:0;a:4:{s:5:\"title\";s:14:\"Global Georgia\";s:3:\"_id\";s:7:\"a8c2da2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Georgia\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(3226,461,'_elementor_page_assets','a:0:{}'),(3227,461,'_elementor_version','3.6.2'),(3228,461,'_elementor_pro_version','3.6.4'),(3231,462,'_wp_page_template','default'),(3232,462,'_elementor_page_settings','a:49:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";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:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#4B4C4C\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Georgia\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"body_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:2:{s:10:\"body_color\";s:0:\"\";s:26:\"body_typography_typography\";s:29:\"globals/typography?id=a8c2da2\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(3233,462,'_elementor_data','[]'),(3234,462,'_elementor_page_assets','a:0:{}'),(3235,462,'_elementor_version','3.6.2'),(3236,462,'_elementor_pro_version','3.6.4'),(3241,463,'_elementor_data','[]'),(3242,463,'_elementor_page_assets','a:0:{}'),(3243,463,'_elementor_version','3.6.2'),(3244,463,'_elementor_pro_version','3.6.4'),(3291,469,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3290,469,'_elementor_page_assets','a:0:{}'),(3289,469,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"color_menu_item_hover\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3288,469,'_wp_page_template','elementor_canvas'),(3286,469,'_elementor_version','3.6.2'),(3287,469,'_elementor_edit_mode','builder'),(3253,465,'_elementor_edit_mode','builder'),(3254,465,'_elementor_template_type','kit'),(3255,465,'_wp_page_template','default'),(3256,465,'_elementor_page_settings','a:45:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";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:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:4:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"body_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=primary\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";}'),(3257,465,'_elementor_data','[]'),(3258,465,'_elementor_page_assets','a:0:{}'),(3259,465,'_elementor_version','3.6.2'),(3260,465,'_elementor_pro_version','3.6.4'),(3261,466,'_elementor_edit_mode','builder'),(3262,466,'_elementor_template_type','kit'),(3263,466,'_wp_page_template','default'),(3264,466,'_elementor_page_settings','a:45:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:1:{i:0;a:2:{s:3:\"_id\";s:7:\"01c5958\";s:5:\"title\";s:11:\"New Item #1\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:2:{i:0;a:2:{s:3:\"_id\";s:7:\"3afd11a\";s:5:\"title\";s:5:\"Hover\";}i:1;a:5:{s:3:\"_id\";s:7:\"b0e0f85\";s:5:\"title\";s:6:\"Active\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:15:\"Times New Roman\";s:26:\"typography_text_decoration\";s:9:\"underline\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:2;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:4:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"body_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=primary\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";}'),(3265,466,'_elementor_data','[]'),(3266,466,'_elementor_page_assets','a:0:{}'),(3267,466,'_elementor_version','3.6.2'),(3268,466,'_elementor_pro_version','3.6.4'),(3269,467,'_elementor_template_type','wp-page'),(3270,467,'_elementor_version','3.6.2'),(3271,467,'_elementor_edit_mode','builder'),(3272,467,'_wp_page_template','elementor_canvas'),(3273,467,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"color_menu_item_hover\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3274,467,'_elementor_page_assets','a:0:{}'),(3275,467,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3276,467,'_elementor_pro_version','3.6.4'),(3277,468,'_elementor_template_type','wp-page'),(3278,468,'_elementor_version','3.6.2'),(3279,468,'_elementor_edit_mode','builder'),(3280,468,'_wp_page_template','elementor_canvas'),(3281,468,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"color_menu_item_hover\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3282,468,'_elementor_page_assets','a:0:{}'),(3283,468,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3284,468,'_elementor_pro_version','3.6.4'),(3292,469,'_elementor_pro_version','3.6.4'),(3293,470,'_elementor_edit_mode','builder'),(3294,470,'_elementor_template_type','kit'),(3295,470,'_wp_page_template','default'),(3296,470,'_elementor_page_settings','a:45:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:1:{i:0;a:2:{s:3:\"_id\";s:7:\"01c5958\";s:5:\"title\";s:11:\"New Item #1\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:2:{i:0;a:4:{s:3:\"_id\";s:7:\"3afd11a\";s:5:\"title\";s:5:\"Hover\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_weight\";s:4:\"bold\";}i:1;a:5:{s:3:\"_id\";s:7:\"b0e0f85\";s:5:\"title\";s:6:\"Active\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:15:\"Times New Roman\";s:26:\"typography_text_decoration\";s:9:\"underline\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:2;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:4:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"body_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=primary\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";}'),(3297,470,'_elementor_data','[]'),(3298,470,'_elementor_page_assets','a:0:{}'),(3299,470,'_elementor_version','3.6.2'),(3300,470,'_elementor_pro_version','3.6.4'),(3301,471,'_elementor_template_type','wp-page'),(3302,471,'_elementor_version','3.6.2'),(3303,471,'_elementor_edit_mode','builder'),(3304,471,'_wp_page_template','elementor_canvas'),(3305,471,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"color_menu_item_hover\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3306,471,'_elementor_page_assets','a:0:{}'),(3307,471,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3308,471,'_elementor_pro_version','3.6.4'),(3309,472,'_elementor_template_type','wp-page'),(3310,472,'_elementor_version','3.6.2'),(3311,472,'_elementor_edit_mode','builder'),(3312,472,'_wp_page_template','elementor_canvas'),(3313,472,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"color_menu_item_hover\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3314,472,'_elementor_page_assets','a:0:{}'),(3315,472,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3316,472,'_elementor_pro_version','3.6.4'),(3317,473,'_elementor_template_type','wp-page'),(3318,473,'_elementor_version','3.6.2'),(3319,473,'_elementor_edit_mode','builder'),(3320,473,'_wp_page_template','elementor_canvas'),(3321,473,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=text\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3322,473,'_elementor_page_assets','a:0:{}'),(3323,473,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3324,473,'_elementor_pro_version','3.6.4'),(3325,474,'_elementor_edit_mode','builder'),(3326,474,'_elementor_template_type','kit'),(3327,474,'_wp_page_template','default'),(3328,474,'_elementor_page_settings','a:51:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:1:{i:0;a:2:{s:3:\"_id\";s:7:\"01c5958\";s:5:\"title\";s:11:\"New Item #1\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:2:{i:0;a:4:{s:3:\"_id\";s:7:\"3afd11a\";s:5:\"title\";s:5:\"Hover\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_weight\";s:4:\"bold\";}i:1;a:5:{s:3:\"_id\";s:7:\"b0e0f85\";s:5:\"title\";s:6:\"Active\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:15:\"Times New Roman\";s:26:\"typography_text_decoration\";s:9:\"underline\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:2;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:4:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"body_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=primary\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:10:\"body_color\";s:7:\"#000000\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:15:\"Times New Roman\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:25:\"mobile_browser_background\";s:7:\"#FEFAE0\";}'),(3329,474,'_elementor_data','[]'),(3330,474,'_elementor_page_assets','a:0:{}'),(3331,474,'_elementor_version','3.6.2'),(3332,474,'_elementor_pro_version','3.6.4'),(3547,504,'_elementor_template_type','wp-page'),(3548,504,'_elementor_version','3.6.2'),(3549,504,'_elementor_edit_mode','builder'),(3477,494,'_elementor_template_type','wp-page'),(3365,479,'_elementor_template_type','wp-page'),(3366,479,'_elementor_version','3.6.2'),(3367,479,'_elementor_edit_mode','builder'),(3368,479,'_wp_page_template','elementor_canvas'),(3369,479,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b01fe2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b85a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3341,476,'_elementor_edit_mode','builder'),(3342,476,'_elementor_template_type','kit'),(3343,476,'_wp_page_template','default'),(3344,476,'_elementor_page_settings','a:51:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#FEFAE0\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FAEDCD\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#CCD5AE\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"01c5958\";s:5:\"title\";s:5:\"Hover\";s:5:\"color\";s:7:\"#8A9A32\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{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:9:\"Helvetica\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:2;a:6:{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:15:\"Times New Roman\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}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:15:\"Times New Roman\";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:10:\"The Collab\";s:16:\"site_description\";s:10:\"The Collab\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:7:\"Georgia\";s:8:\"h1_color\";s:7:\"#4B4C4C\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Georgia\";s:8:\"h2_color\";s:7:\"#4B4C4C\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Georgia\";s:8:\"h3_color\";s:7:\"#4B4C4C\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Georgia\";s:8:\"h4_color\";s:7:\"#4B4C4C\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Georgia\";s:8:\"h5_color\";s:7:\"#4B4C4C\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Georgia\";s:8:\"h6_color\";s:7:\"#4B4C4C\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_header_logo_display\";s:0:\"\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:17:\"hello_header_menu\";s:2:\"19\";s:23:\"hello_header_menu_color\";s:7:\"#4B4C4C\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#4B4C4C\";s:39:\"hello_header_menu_typography_typography\";s:6:\"custom\";s:40:\"hello_header_menu_typography_font_family\";s:7:\"Georgia\";s:25:\"hello_footer_logo_display\";s:0:\"\";s:28:\"hello_footer_tagline_display\";s:0:\"\";s:25:\"hello_footer_menu_display\";s:0:\"\";s:11:\"__globals__\";a:4:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"body_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=primary\";}s:17:\"paragraph_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:10:\"body_color\";s:7:\"#000000\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:15:\"Times New Roman\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:25:\"mobile_browser_background\";s:7:\"#FEFAE0\";}'),(3345,476,'_elementor_data','[]'),(3346,476,'_elementor_page_assets','a:0:{}'),(3347,476,'_elementor_version','3.6.2'),(3348,476,'_elementor_pro_version','3.6.4'),(3349,477,'_elementor_template_type','wp-page'),(3350,477,'_elementor_version','3.6.2'),(3351,477,'_elementor_edit_mode','builder'),(3352,477,'_wp_page_template','elementor_canvas'),(3353,477,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=text\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3354,477,'_elementor_page_assets','a:0:{}'),(3355,477,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3356,477,'_elementor_pro_version','3.6.4'),(3357,478,'_elementor_template_type','wp-page'),(3358,478,'_elementor_version','3.6.2'),(3359,478,'_elementor_edit_mode','builder'),(3360,478,'_wp_page_template','elementor_canvas'),(3361,478,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=text\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=e2c6be8\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e75c40a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3362,478,'_elementor_page_assets','a:0:{}'),(3363,478,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3364,478,'_elementor_pro_version','3.6.4'),(3370,479,'_elementor_page_assets','a:0:{}'),(3371,479,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3372,479,'_elementor_pro_version','3.6.4'),(3374,480,'_elementor_edit_mode','builder'),(3375,480,'_elementor_template_type','widget'),(3376,481,'_elementor_edit_mode','builder'),(3377,481,'_elementor_template_type','widget'),(3378,480,'_wp_page_template','default'),(3379,480,'_elementor_version','3.6.2'),(3380,480,'_elementor_pro_version','3.6.4'),(3381,480,'_elementor_data','[{\"id\":\"7b5761de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(3382,482,'_elementor_edit_mode','builder'),(3383,482,'_elementor_template_type','widget'),(3384,482,'_wp_page_template','default'),(3385,482,'_elementor_version','3.6.2'),(3386,482,'_elementor_pro_version','3.6.4'),(3387,482,'_elementor_data','[{\"id\":\"7b5761de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(3388,480,'_elementor_page_assets','a:0:{}'),(3389,480,'_elementor_template_widget_type','nav-menu'),(3485,495,'_elementor_edit_mode','builder'),(3423,486,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3424,486,'_elementor_page_assets','a:0:{}'),(3398,264,'_wp_trash_meta_status','publish'),(3422,486,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3399,264,'_wp_trash_meta_time','1649452739'),(3400,264,'_wp_desired_post_slug','front-page'),(3401,484,'_elementor_template_type','wp-page'),(3402,484,'_elementor_version','3.6.2'),(3403,484,'_elementor_edit_mode','builder'),(3404,484,'_elementor_pro_version','3.6.4'),(3405,484,'_wp_page_template','elementor_canvas'),(3406,484,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3407,484,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"324ed5e8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3408,484,'_elementor_page_assets','a:0:{}'),(3409,485,'_elementor_template_type','wp-page'),(3410,485,'_elementor_version','3.6.2'),(3411,485,'_elementor_edit_mode','builder'),(3412,485,'_elementor_pro_version','3.6.4'),(3413,485,'_wp_page_template','elementor_canvas'),(3414,485,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3415,485,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74e63d5f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"324ed5e8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3416,485,'_elementor_page_assets','a:0:{}'),(3482,494,'_elementor_page_assets','a:0:{}'),(3483,494,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3484,494,'_elementor_pro_version','3.6.4'),(3433,480,'_elementor_global_widget_included_posts','a:13:{i:487;b:1;i:491;b:1;i:29;b:1;i:495;b:1;i:498;b:1;i:499;b:1;i:508;b:1;i:288;b:1;i:512;b:1;i:37;b:1;i:519;b:1;i:138;b:1;i:39;b:1;}'),(3481,494,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b01fe2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b85a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3479,494,'_elementor_edit_mode','builder'),(3480,494,'_wp_page_template','elementor_canvas'),(3478,494,'_elementor_version','3.6.2'),(3434,488,'_elementor_edit_mode','builder'),(3435,488,'_elementor_template_type','section'),(3436,488,'_elementor_version','3.6.2'),(3437,488,'_elementor_pro_version','3.6.4'),(3438,489,'_elementor_edit_mode','builder'),(3439,489,'_elementor_template_type','section'),(3440,489,'_elementor_version','3.6.2'),(3441,489,'_elementor_pro_version','3.6.4'),(3442,488,'_wp_page_template','default'),(3443,488,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3444,488,'_elementor_data','[{\"id\":\"704c0303\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"68ffd24a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"562ffbea\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3445,490,'_elementor_edit_mode','builder'),(3446,490,'_elementor_template_type','section'),(3447,490,'_elementor_version','3.6.2'),(3448,490,'_elementor_pro_version','3.6.4'),(3449,490,'_wp_page_template','default'),(3450,490,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3451,490,'_elementor_data','[{\"id\":\"704c0303\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"68ffd24a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"562ffbea\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3452,488,'_elementor_page_assets','a:0:{}'),(3461,492,'_elementor_template_type','wp-page'),(3462,492,'_elementor_version','3.6.2'),(3463,492,'_elementor_edit_mode','builder'),(3464,492,'_wp_page_template','elementor_canvas'),(3465,492,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b01fe2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b85a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3466,492,'_elementor_page_assets','a:0:{}'),(3467,492,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3468,492,'_elementor_pro_version','3.6.4'),(3469,493,'_elementor_template_type','wp-page'),(3470,493,'_elementor_version','3.6.2'),(3471,493,'_elementor_edit_mode','builder'),(3472,493,'_wp_page_template','elementor_canvas'),(3473,493,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"131cac3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37e5315\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b01fe2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b85a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3474,493,'_elementor_page_assets','a:0:{}'),(3475,493,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3476,493,'_elementor_pro_version','3.6.4'),(3486,495,'_elementor_template_type','page'),(3487,495,'_elementor_version','3.6.2'),(3488,495,'_elementor_pro_version','3.6.4'),(3489,496,'_elementor_edit_mode','builder'),(3490,496,'_elementor_template_type','page'),(3491,496,'_elementor_version','3.6.2'),(3492,496,'_elementor_pro_version','3.6.4'),(3493,495,'_wp_page_template','elementor_canvas'),(3494,495,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3495,495,'_elementor_data','[{\"id\":\"5f0a3f72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e3b008c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c92a10f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ee4be47\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"195a6d22\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27b9a4b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"36dbfb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"39830150\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"2b15f4d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"252e2c68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2b3ad0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22682cf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"57e2a32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d939579\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c829cec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"59fd8823\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92fda16\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"3f815e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7418c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37c8f7b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"1b8e053\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"384b9a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"7da570d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6c9ade56\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"b7e3274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7578a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6bc02a9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffce413\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"5384becf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29d56f69\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc98f2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2093ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"5399ce79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"4a6b512c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d783cfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"724fdec7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2e1cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3aa2d595\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b5f6faf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"134828c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e94c4e3\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7220a229\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9e6264\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"39999ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"64fce3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"4acc93d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a85e158\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68d9518c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7343ba49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ab1048\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3496,497,'_elementor_edit_mode','builder'),(3497,497,'_elementor_template_type','page'),(3498,497,'_elementor_version','3.6.2'),(3499,497,'_elementor_pro_version','3.6.4'),(3500,497,'_wp_page_template','elementor_canvas'),(3501,497,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3502,497,'_elementor_data','[{\"id\":\"5f0a3f72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e3b008c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c92a10f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ee4be47\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"195a6d22\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27b9a4b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"36dbfb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"39830150\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"2b15f4d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"252e2c68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2b3ad0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22682cf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"57e2a32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d939579\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c829cec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"59fd8823\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92fda16\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"3f815e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7418c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37c8f7b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"1b8e053\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"384b9a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"7da570d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6c9ade56\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"b7e3274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7578a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6bc02a9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffce413\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"5384becf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29d56f69\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc98f2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2093ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"5399ce79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"4a6b512c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d783cfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"724fdec7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2e1cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3aa2d595\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b5f6faf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"134828c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e94c4e3\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7220a229\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9e6264\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"39999ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"64fce3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"4acc93d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a85e158\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68d9518c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7343ba49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ab1048\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3503,495,'_elementor_page_assets','a:0:{}'),(3555,505,'_elementor_template_type','wp-page'),(3554,504,'_elementor_pro_version','3.6.4'),(3552,504,'_elementor_page_assets','a:0:{}'),(3553,504,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3551,504,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3550,504,'_wp_page_template','elementor_canvas'),(3544,503,'_elementor_page_assets','a:0:{}'),(3545,503,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3546,503,'_elementor_pro_version','3.6.4'),(3556,505,'_elementor_version','3.6.2'),(3557,505,'_elementor_edit_mode','builder'),(3558,505,'_wp_page_template','elementor_canvas'),(3559,505,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3560,505,'_elementor_page_assets','a:0:{}'),(3561,505,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3562,505,'_elementor_pro_version','3.6.4'),(3563,506,'_elementor_template_type','wp-page'),(3564,506,'_elementor_version','3.6.2'),(3565,506,'_elementor_edit_mode','builder'),(3566,506,'_wp_page_template','elementor_canvas'),(3567,506,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3568,506,'_elementor_page_assets','a:0:{}'),(3569,506,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3570,506,'_elementor_pro_version','3.6.4'),(3571,507,'_elementor_template_type','wp-page'),(3572,507,'_elementor_version','3.6.2'),(3573,507,'_elementor_edit_mode','builder'),(3574,507,'_wp_page_template','elementor_canvas'),(3575,507,'_elementor_data','[{\"id\":\"3dab45a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea2ac27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed999df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"92963d6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"28c80f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3e478\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"57a4dc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.0250000000000003552713678800500929355621337890625},\"elements\":[],\"isInner\":false},{\"id\":\"95a2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":29.957999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"8bf286c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">About the Practice<\\/h2>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7cbf0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.97800000000000153477230924181640148162841796875},\"elements\":[{\"id\":\"2ec1d8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<\\/p>\\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d6e21e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"219c20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.013999999999999346300683100707828998565673828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eff6c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"b76a702\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"444daf2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":30.199999999999999289457264239899814128875732421875,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4bf01f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">The Team<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1417203\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"a50664b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"cc31e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"f765159\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Ariel-Axelrod.webp\",\"id\":217,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef26b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"4a1f0f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ariel Axelrod, LMHC, NCC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e60c606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d119e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c57d33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43e9fdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1715af8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe12be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b392cd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"541ffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30},\"elements\":[{\"id\":\"1be13dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/02\\/Office-Cat.webp\",\"id\":218,\"alt\":\"Yahu\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3020862\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":49.99900000000000233058017329312860965728759765625},\"elements\":[{\"id\":\"c50af71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yahu\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bee38e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"064a871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.9789999999999992041921359486877918243408203125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"449a862\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"0f75238\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f210b2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c2d6703\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Training and Experience<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6746c612\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3063469f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"c77d824\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"6cd1f475\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"comp-kljqkrc6\\\" class=\\\"_1Q9if\\\" data-testid=\\\"richTextElement\\\"><strong>Professional Licenses and Certifications<\\/strong>\\n<ul>\\n \\t<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882<\\/br><\\/li>\\n \\t<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.<\\/br><\\/li>\\n<\\/ul>\\n<strong>Education<\\/strong>\\n<ul>\\n \\t<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College<\\/br><\\/li>\\n \\t<li>BA in Russian Area Studies, Wellesley College<\\/li>\\n<\\/ul>\\n<strong>Clinical Training<\\/strong>\\n<ul>\\n \\t<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA<\\/li>\\n \\t<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA<\\/li>\\n \\t<li>Supervised Mediation Placement: Newton District Court, Newton, MA<\\/li>\\n<\\/ul>\\n<strong>Professional Associations<\\/strong>\\n<ul>\\n \\t<li>Massachusetts Mental Health Counselors Association<\\/li>\\n<\\/ul>\\n<\\/div>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e491c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f38d7c4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cf9764a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9460c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3576,507,'_elementor_page_assets','a:0:{}'),(3577,507,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3578,507,'_elementor_pro_version','3.6.4'),(3650,516,'_elementor_page_assets','a:0:{}'),(3651,517,'_elementor_edit_mode','builder'),(3652,517,'_elementor_template_type','wp-page'),(3653,517,'_elementor_version','3.6.2'),(3654,517,'_elementor_pro_version','3.6.4'),(3655,517,'_wp_page_template','elementor_canvas'),(3656,517,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3657,517,'_elementor_data','[{\"id\":\"3a368efe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15522298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2807b2e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d9f1540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e8a8a66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"129808a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4cafd0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"faq_schema\":\"yes\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6977017e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3006261c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfe6d1\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"296ee02e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3603,511,'_elementor_edit_mode','builder'),(3604,511,'_elementor_template_type','wp-page'),(3605,511,'_elementor_version','3.6.2'),(3606,511,'_elementor_pro_version','3.6.4'),(3607,511,'_wp_page_template','elementor_canvas'),(3608,511,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3609,511,'_elementor_data','[{\"id\":\"1cd1bef8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"32086bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e1fb36a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"30dfb1c7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480},{\"id\":\"444d67c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d25f3fb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a6ece0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5bc61460\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":5},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":89.3020000000000067075234255753457546234130859375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk oversimplification when we classify all technological struggle as addiction, and yet interactive interfaces are designed to hold attention for purposes not altogether germane to wellbeing. If this is an area of concern, we can build and test strategies for resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of <em>us<\\/em>. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (a tool that can help us find our way again). This particular loss sometimes goes unnoticed in formal descriptions of health and wellbeing, but it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from school. Entering the workplace. Transitioning into a new career. Giving birth or adopting. Acclimating to life after an injury. Taking on new roles, or shedding old ones. Consider the time and energy needed to adjust to changes in self-identity. Therapy is a place to give life transitions the attention and respect they require.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":5},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"411f33f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8b86f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"f3d790c\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"464410e9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"109a428\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4452839d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3610,511,'_elementor_page_assets','a:0:{}'),(3643,516,'_elementor_edit_mode','builder'),(3644,516,'_elementor_template_type','wp-page'),(3645,516,'_elementor_version','3.6.2'),(3646,516,'_elementor_pro_version','3.6.4'),(3647,516,'_wp_page_template','elementor_canvas'),(3648,516,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3649,516,'_elementor_data','[{\"id\":\"3a368efe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15522298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2807b2e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d9f1540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e8a8a66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"129808a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4cafd0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"faq_schema\":\"yes\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6977017e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3006261c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfe6d1\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"296ee02e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3587,509,'_elementor_edit_mode','builder'),(3588,509,'_elementor_template_type','wp-page'),(3589,509,'_elementor_version','3.6.2'),(3590,509,'_elementor_pro_version','3.6.4'),(3591,509,'_wp_page_template','elementor_canvas'),(3592,509,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3593,509,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#146E4882\"},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3594,509,'_elementor_page_assets','a:0:{}'),(3595,510,'_elementor_edit_mode','builder'),(3596,510,'_elementor_template_type','wp-page'),(3597,510,'_elementor_version','3.6.2'),(3598,510,'_elementor_pro_version','3.6.4'),(3599,510,'_wp_page_template','elementor_canvas'),(3600,510,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3601,510,'_elementor_data','[{\"id\":\"7642154c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"55ac2970\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40e3c20\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"c88fa45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75da501e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"118ecc76\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3d3caa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"4eca0958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1d78ad92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Specialties<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"beach\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41deb8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#146E4882\"},\"elements\":[{\"id\":\"4ad05a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0210000000000007958078640513122081756591796875},\"elements\":[],\"isInner\":false},{\"id\":\"34c1bad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.2540000000000048885340220294892787933349609375},\"elements\":[{\"id\":\"7b7c1ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"eb11b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c09a45d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Executive Function<\\/strong><\\/p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"89f07f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0632cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Issues with Technology<\\/b><\\/p><p>We risk an error of oversimplification when we classify all technological struggle as addiction\\u2014as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one\\u2019s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4b04ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5702aeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Relationship Conflicts<\\/strong><\\/p><p>We are social creatures, and each individual\\u2019s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f493d14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"93fc360\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41796a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1694564\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Creativity and Mastery<\\/strong><\\/p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab9ef8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58887ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Body Image and Self-Esteem<\\/strong><\\/p><p>How we see ourselves\\u2014physically and mentally\\u2014is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47781f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8b83b98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Life Transitions<\\/strong><\\/p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4eeb9c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16dec1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"47ca7bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anxiety and Stress Management<\\/strong><\\/p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today\\u2019s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9654242\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4938c99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Depression<\\/strong><\\/p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7b21939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28fc266\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Grief and Loss<\\/strong><\\/p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bafca19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.0269999999999992468247000942938029766082763671875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e4f2ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1ec15fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43ca241d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58a0288f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3602,510,'_elementor_page_assets','a:0:{}'),(3635,515,'_elementor_edit_mode','builder'),(3636,515,'_elementor_template_type','wp-page'),(3637,515,'_elementor_version','3.6.2'),(3638,515,'_elementor_pro_version','3.6.4'),(3639,515,'_wp_page_template','elementor_canvas'),(3640,515,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3641,515,'_elementor_data','[{\"id\":\"3a368efe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15522298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2807b2e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d9f1540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e8a8a66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"129808a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4cafd0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"faq_schema\":\"yes\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6977017e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3006261c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfe6d1\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"296ee02e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3642,515,'_elementor_page_assets','a:0:{}'),(3619,513,'_elementor_edit_mode','builder'),(3620,513,'_elementor_template_type','wp-page'),(3621,513,'_elementor_version','3.6.2'),(3622,513,'_elementor_pro_version','3.6.4'),(3623,513,'_wp_page_template','elementor_canvas'),(3624,513,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3625,513,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3626,513,'_elementor_page_assets','a:0:{}'),(3627,514,'_elementor_edit_mode','builder'),(3628,514,'_elementor_template_type','wp-page'),(3629,514,'_elementor_version','3.6.2'),(3630,514,'_elementor_pro_version','3.6.4'),(3631,514,'_wp_page_template','elementor_canvas'),(3632,514,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3633,514,'_elementor_data','[{\"id\":\"9cf06fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e0530e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"765b5738\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"1f8c1c6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b9b682f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"59f22d41\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73e723f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"171636ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74d2856e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3973f23d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d5dc096\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5654dc07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7503edec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3634,514,'_elementor_page_assets','a:0:{}'),(3658,517,'_elementor_page_assets','a:0:{}'),(3659,518,'_elementor_edit_mode','builder'),(3660,518,'_elementor_template_type','wp-page'),(3661,518,'_elementor_version','3.6.2'),(3662,518,'_elementor_pro_version','3.6.4'),(3663,518,'_wp_page_template','elementor_canvas'),(3664,518,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3665,518,'_elementor_data','[{\"id\":\"3a368efe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15522298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2807b2e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d9f1540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e8a8a66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7f20cba\"}},\"elements\":[{\"id\":\"129808a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4cafd0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Policies, FAQs, and Fees<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ffdd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"20543322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"3801344a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0fb31e7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What is your approach to therapy?\",\"tab_content\":\"<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.<\\/p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.<\\/p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.<\\/p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.<\\/p>\",\"_id\":\"0743ebd\"},{\"tab_title\":\"The duration of therapy\",\"tab_content\":\"Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\",\"_id\":\"5f8f2d0\"},{\"_id\":\"8d0a913\",\"tab_title\":\"How are you handling Covid-19?\",\"tab_content\":\"<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.<\\/p>\"},{\"_id\":\"d14c850\",\"tab_title\":\"What age groups do you work with?\",\"tab_content\":\"<p>I work with adults 18 years of age and older.<\\/p>\"},{\"_id\":\"7a45a09\",\"tab_title\":\"Do you prescribe medication?\",\"tab_content\":\"I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\"},{\"_id\":\"786e97b\",\"tab_title\":\"What is your fee structure?\",\"tab_content\":\"<p><em>Psychotherapy Fees<\\/em><\\/p><ul><li>Initial phone consult: free<\\/li><li>Psychotherapy intake: $220<\\/li><li>Psychotherapy, 50-minute session: $150<\\/li><li>Psychotherapy, 30-minute session: $80<\\/li><\\/ul><p>\\u00a0<\\/p><p><em>Administrative Fees<\\/em><\\/p><ul><li>Collateral contact and other non-insurance paperwork or material preparation:\\u00a00-15 minutes: no charge; subsequent 30-minute increments: $80<\\/li><\\/ul><p><span class=\\\"color_15\\\">I accept cash and credit\\/debit card. For telehealth appointments, I am only able to accept credit\\/debit card. All card payments are processed via <a href=\\\"https:\\/\\/axelrod.clientsecure.me\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Simple Practice<\\/a>.<\\/span><\\/p>\"},{\"_id\":\"c28cfb0\",\"tab_title\":\"Where can I view your privacy policy and patient bill of rights?\",\"tab_content\":\"<p>My Notice of Privacy Practices is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Notice-of-Privacy-Practices.pdf\\\">here<\\/a> and my Patient Bill of Rights is available <a href=\\\"https:\\/\\/the-collab.com\\/wp-content\\/uploads\\/2022\\/04\\/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\\\">here<\\/a>.<\\/p>\"}],\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"faq_schema\":\"yes\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"3c48ffa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6977017e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3006261c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfe6d1\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"296ee02e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3666,518,'_elementor_page_assets','a:0:{}'),(3722,525,'_elementor_page_assets','a:0:{}'),(3730,23,'_elementor_css','a:6:{s:4:\"time\";i:1649890601;s:5:\"fonts\";a:3:{i:0;s:9:\"Helvetica\";i:1;s:15:\"Times New Roman\";i:4;s:7:\"Georgia\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3731,29,'_elementor_css','a:6:{s:4:\"time\";i:1649890602;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3691,522,'_elementor_edit_mode','builder'),(3692,522,'_elementor_template_type','wp-page'),(3693,522,'_elementor_version','3.6.2'),(3694,522,'_elementor_pro_version','3.6.4'),(3695,522,'_wp_page_template','elementor_canvas'),(3696,522,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3697,522,'_elementor_data','[{\"id\":\"6c383d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2045199c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"453d5ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b188741\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=01c5958\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"\"},\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\",\"pointer\":\"none\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Times New Roman\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#000000\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":480}],\"isInner\":false}],\"isInner\":false},{\"id\":\"142f57aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27a75bd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"78194d97\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"pattern_height\":{\"unit\":\"px\",\"size\":26.10000000000000142108547152020037174224853515625,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":13.9000000000000003552713678800500929355621337890625,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"595a3a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Margin notes: A blog comprising commentary on the state of the art and the ecology of mental healthcare provision. Not medical advice, nor intended to replace it or mimick it in any way.<\\/em><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e66f8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4d6cdb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"90ef8f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3698,522,'_elementor_page_assets','a:0:{}'),(3675,520,'_elementor_edit_mode','builder'),(3676,520,'_elementor_template_type','wp-page'),(3677,520,'_elementor_version','3.6.2'),(3678,520,'_elementor_pro_version','3.6.4'),(3679,520,'_wp_page_template','elementor_canvas'),(3680,520,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3681,520,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3682,520,'_elementor_page_assets','a:0:{}'),(3683,521,'_elementor_edit_mode','builder'),(3684,521,'_elementor_template_type','wp-page'),(3685,521,'_elementor_version','3.6.2'),(3686,521,'_elementor_pro_version','3.6.4'),(3687,521,'_wp_page_template','elementor_canvas'),(3688,521,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3689,521,'_elementor_data','[{\"id\":\"1ed853a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3247213b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5744f6c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"global\",\"templateID\":264},{\"id\":\"37a90851\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62ad6f44\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bef7ae3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6574f8a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2f908613\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"0e77e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Q: What are margin notes?<\\/p>\\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23fe223c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"389ebfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margin Notes\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d0035f\",\"elType\":\"widget\",\"settings\":{\"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\":\"\\/\\/\\/\",\"pagination_type\":\"load_more_infinite_scroll\",\"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\",\"classic_columns\":\"1\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"2bcc4b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"960344c\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"},{\"id\":\"ecf34b8\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Categories\"}},\"elements\":[],\"widgetType\":\"wp-widget-categories\"},{\"id\":\"e6f4c8b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Recent Posts\",\"number\":\"5\"}},\"elements\":[],\"widgetType\":\"wp-widget-recent-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b5588\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"53ed04b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c6cfc09\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"333e7f68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3690,521,'_elementor_page_assets','a:0:{}'),(3699,523,'_elementor_template_type','wp-page'),(3700,523,'_elementor_version','3.6.2'),(3701,523,'_elementor_edit_mode','builder'),(3702,523,'_elementor_pro_version','3.6.4'),(3703,523,'_wp_page_template','elementor_canvas'),(3704,523,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3705,523,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3706,523,'_elementor_page_assets','a:0:{}'),(3707,524,'_elementor_template_type','wp-page'),(3708,524,'_elementor_version','3.6.2'),(3709,524,'_elementor_edit_mode','builder'),(3710,524,'_elementor_pro_version','3.6.4'),(3711,524,'_wp_page_template','elementor_canvas'),(3712,524,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3713,524,'_elementor_data','[{\"id\":\"589dd3dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"33cd3832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51c4ca26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#4B4C4C\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac28a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"globals\\/typography?id=text\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2c5a82a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f86441f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"3dba939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57a7c2a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be780c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2e4025ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"a26346c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3dcc6786\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21aa09d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fe77\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"1be6d6ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a489be4\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"546e7efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"28e9def6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"50dc075\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"49363da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"43398b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"414c594a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c037654\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c2f7e75\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4df61f6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2cbfa468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"750b45d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u00a0\\u00a0\\u00a0 Ariel Axelrod, LMHC<\\/h2>\",\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\",\"typography_typography\":\"\"},\"text_color\":\"#4B4C4C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e0d222\",\"elType\":\"widget\",\"settings\":{\"menu\":\"page-navigation\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Lora\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=3b450aa\",\"color_menu_item_hover\":\"globals\\/colors?id=3b450aa\",\"pointer_color_menu_item_hover\":\"\",\"menu_typography_typography\":\"\"},\"color_menu_item\":\"#4B4C4C\",\"pointer_color_menu_item_hover\":\"#00000000\",\"menu_typography_font_weight\":\"400\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"12d699d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"843a18f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0fdc6c7\"}},\"elements\":[{\"id\":\"2a134154\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38d95d0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Contact Page and Directions<\\/h2>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d96151f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"405ee935\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"42646ad7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d42d50c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can use the form to contact me to learn more and book a consultation.\\n<p><\\/p>\\n<strong>Office Address<\\/strong><\\/br>\\n1234 Broadway <\\/br>\\nSomerville, MA <\\/br>\\n<p><\\/p>\\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\\n<p><\\/p>\\n<strong><u>Transportation<\\/u><\\/strong><p><\\/p>\\n<strong>Car:<\\/strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p><\\/p>\\n<strong>Bicycle:<\\/strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p><\\/p>\\n<strong>Public transportation:<\\/strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89\\/93 have stops within 3 blocks of the Center. <p><\\/p><\\/br>\\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e8c3149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"6473d4e2\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Me\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"e7d3c05\",\"required\":\"true\"},{\"_id\":\"fb2d4a7\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot1\",\"custom_id\":\"field_fb2d4a7\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"dac8acb\"},{\"_id\":\"952e715\",\"field_label\":\"Phone No.\",\"placeholder\":\"Phone No.\",\"custom_id\":\"field_952e715\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"910ede1\",\"required\":\"true\",\"rows\":8},{\"_id\":\"fc162c5\",\"field_type\":\"honeypot\",\"field_label\":\"HonSpot2\",\"custom_id\":\"field_fc162c5\"}],\"input_size\":\"md\",\"button_width\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ariel@axelrodlmhc.com\",\"email_subject\":\"New message from &quot;The Collab&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@the-collab.com\",\"email_from_name\":\"The Collab Submission Form\",\"email_reply_to\":\"email\",\"email_to_2\":\"axelrodhahn@gmail.com\",\"email_subject_2\":\"New message from &quot;The Collab&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@the-collab.com\",\"email_from_name_2\":\"The Collab\",\"email_reply_to_2\":\"axelrodhahn@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There&#039;s something wrong. The form is invalid.\",\"mark_required\":\"yes\",\"email_content_type\":\"plain\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5816d820\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"59bccece\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c52969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false},{\"id\":\"6f4fc060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80},\"elements\":[{\"id\":\"c175829\",\"elType\":\"widget\",\"settings\":{\"address\":\"1234 Broadway Somerville, MA\",\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":401,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"31b9c7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"36899b15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5777ef6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55631094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5880903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h6>Copyright 2022. All rights reserved.<\\/h6>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Georgia\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=3b450aa\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3714,524,'_elementor_page_assets','a:0:{}');
/*!40000 ALTER TABLE `wpob_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_postmeta` with 2733 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_question_answers`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_question_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_question_answers` (
  `answer_id` int(11) NOT NULL AUTO_INCREMENT,
  `belongs_question_id` int(11) DEFAULT NULL,
  `belongs_question_type` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_correct` tinyint(4) DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `answer_two_gap_match` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_view_format` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_order` int(11) DEFAULT 0,
  PRIMARY KEY (`answer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_question_answers`
--

LOCK TABLES `wpob_tutor_quiz_question_answers` WRITE;
/*!40000 ALTER TABLE `wpob_tutor_quiz_question_answers` DISABLE KEYS */;
INSERT INTO `wpob_tutor_quiz_question_answers` VALUES (1,1,'multiple_choice','yes',1,0,NULL,'text',NULL,1),(2,1,'multiple_choice','no',NULL,0,NULL,'text',NULL,2),(3,1,'multiple_choice','perhaps?',1,0,NULL,'text',NULL,3);
/*!40000 ALTER TABLE `wpob_tutor_quiz_question_answers` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_tutor_quiz_question_answers` with 3 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_attempt_answers`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_attempt_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_attempt_answers` (
  `attempt_answer_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `quiz_id` int(11) DEFAULT NULL,
  `question_id` int(11) DEFAULT NULL,
  `quiz_attempt_id` int(11) DEFAULT NULL,
  `given_answer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_mark` decimal(8,2) DEFAULT NULL,
  `achieved_mark` decimal(8,2) DEFAULT NULL,
  `minus_mark` decimal(8,2) DEFAULT NULL,
  `is_correct` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`attempt_answer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_attempt_answers`
--

LOCK TABLES `wpob_tutor_quiz_attempt_answers` WRITE;
/*!40000 ALTER TABLE `wpob_tutor_quiz_attempt_answers` DISABLE KEYS */;
INSERT INTO `wpob_tutor_quiz_attempt_answers` VALUES (1,1,19,1,1,'a:2:{i:0;s:1:\"1\";i:1;s:1:\"3\";}',1.00,1.00,0.00,1);
/*!40000 ALTER TABLE `wpob_tutor_quiz_attempt_answers` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_tutor_quiz_attempt_answers` with 1 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=617 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_logs`
--

LOCK TABLES `wpob_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpob_actionscheduler_logs` VALUES (1,5,'action created','2022-01-17 15:41:32','2022-01-17 15:41:32'),(2,5,'action started via WP Cron','2022-01-17 15:42:39','2022-01-17 15:42:39'),(3,5,'action complete via WP Cron','2022-01-17 15:42:39','2022-01-17 15:42:39'),(4,6,'action created','2022-01-17 17:21:01','2022-01-17 17:21:01'),(5,6,'action started via WP Cron','2022-01-17 17:21:32','2022-01-17 17:21:32'),(6,6,'action complete via WP Cron','2022-01-17 17:21:32','2022-01-17 17:21:32'),(7,7,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(8,8,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(9,9,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(10,10,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(11,11,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(12,12,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(13,13,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(14,14,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(15,15,'action created','2022-01-18 01:58:54','2022-01-18 01:58:54'),(16,7,'action started via WP Cron','2022-01-18 01:58:55','2022-01-18 01:58:55'),(17,7,'action complete via WP Cron','2022-01-18 01:58:55','2022-01-18 01:58:55'),(18,8,'action started via WP Cron','2022-01-18 01:58:55','2022-01-18 01:58:55'),(19,8,'action complete via WP Cron','2022-01-18 01:58:55','2022-01-18 01:58:55'),(20,9,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(21,9,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(22,10,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(23,10,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(24,11,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(25,11,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(26,12,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(27,12,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(28,13,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(29,13,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(30,14,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(31,14,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(32,15,'action started via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(33,15,'action complete via WP Cron','2022-01-18 04:38:09','2022-01-18 04:38:09'),(34,16,'action created','2022-01-23 17:23:37','2022-01-23 17:23:37'),(35,16,'action started via WP Cron','2022-01-23 17:26:26','2022-01-23 17:26:26'),(36,16,'action complete via WP Cron','2022-01-23 17:26:26','2022-01-23 17:26:26'),(37,17,'action created','2022-01-23 18:36:39','2022-01-23 18:36:39'),(38,17,'action started via WP Cron','2022-01-23 18:37:40','2022-01-23 18:37:40'),(61,28,'action complete via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(41,17,'action complete via WP Cron','2022-01-23 18:37:40','2022-01-23 18:37:40'),(60,28,'action started via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(59,29,'action complete via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(58,29,'action started via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(57,29,'action created','2022-01-23 18:39:47','2022-01-23 18:39:47'),(56,28,'action created','2022-01-23 18:39:47','2022-01-23 18:39:47'),(55,27,'action created','2022-01-23 18:39:35','2022-01-23 18:39:35'),(54,26,'action created','2022-01-23 18:39:35','2022-01-23 18:39:35'),(53,25,'action created','2022-01-23 18:39:35','2022-01-23 18:39:35'),(52,24,'action created','2022-01-23 18:38:16','2022-01-23 18:38:16'),(62,27,'action started via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(63,27,'action complete via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(64,26,'action started via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(65,26,'action complete via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(66,25,'action started via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(67,25,'action complete via Async Request','2022-01-23 18:39:49','2022-01-23 18:39:49'),(68,24,'action started via WP Cron','2022-01-23 20:40:14','2022-01-23 20:40:14'),(74,32,'action started via Async Request','2022-01-24 02:56:13','2022-01-24 02:56:13'),(70,24,'action complete via WP Cron','2022-01-23 20:40:15','2022-01-23 20:40:15'),(73,32,'action created','2022-01-24 02:56:10','2022-01-24 02:56:10'),(75,32,'action complete via Async Request','2022-01-24 02:56:13','2022-01-24 02:56:13'),(78,33,'action started via WP Cron','2022-01-24 09:58:55','2022-01-24 09:58:55'),(77,33,'action created','2022-01-24 07:31:20','2022-01-24 07:31:20'),(79,34,'action created','2022-01-24 09:58:57','2022-01-24 09:58:57'),(80,33,'action complete via WP Cron','2022-01-24 09:58:57','2022-01-24 09:58:57'),(81,34,'action started via WP Cron','2022-01-24 12:16:17','2022-01-24 12:16:17'),(82,35,'action created','2022-01-24 12:16:19','2022-01-24 12:16:19'),(83,34,'action complete via WP Cron','2022-01-24 12:16:19','2022-01-24 12:16:19'),(84,35,'action started via WP Cron','2022-01-24 14:20:46','2022-01-24 14:20:46'),(90,38,'action started via WP Cron','2022-01-24 17:28:01','2022-01-24 17:28:01'),(86,35,'action complete via WP Cron','2022-01-24 14:20:48','2022-01-24 14:20:48'),(89,38,'action created','2022-01-24 17:26:54','2022-01-24 17:26:54'),(88,37,'action created','2022-01-24 16:59:05','2022-01-24 16:59:05'),(91,38,'action complete via WP Cron','2022-01-24 17:28:01','2022-01-24 17:28:01'),(92,39,'action created','2022-01-24 17:28:14','2022-01-24 17:28:14'),(93,39,'action started via Async Request','2022-01-24 17:29:26','2022-01-24 17:29:26'),(94,39,'action complete via Async Request','2022-01-24 17:29:26','2022-01-24 17:29:26'),(95,40,'action created','2022-01-24 17:30:15','2022-01-24 17:30:15'),(96,40,'action started via WP Cron','2022-01-24 17:31:26','2022-01-24 17:31:26'),(97,40,'action complete via WP Cron','2022-01-24 17:31:26','2022-01-24 17:31:26'),(98,41,'action created','2022-01-24 17:33:44','2022-01-24 17:33:44'),(99,41,'action started via WP Cron','2022-01-24 17:34:44','2022-01-24 17:34:44'),(100,41,'action complete via WP Cron','2022-01-24 17:34:44','2022-01-24 17:34:44'),(101,37,'action started via WP Cron','2022-01-24 19:00:54','2022-01-24 19:00:54'),(102,42,'action created','2022-01-24 19:00:56','2022-01-24 19:00:56'),(103,37,'action complete via WP Cron','2022-01-24 19:00:56','2022-01-24 19:00:56'),(104,42,'action started via WP Cron','2022-01-24 21:09:59','2022-01-24 21:09:59'),(110,45,'action started via WP Cron','2022-01-25 03:21:57','2022-01-25 03:21:57'),(106,42,'action complete via WP Cron','2022-01-24 21:10:01','2022-01-24 21:10:01'),(109,45,'action created','2022-01-25 03:21:57','2022-01-25 03:21:57'),(119,49,'action created','2022-01-25 21:40:52','2022-01-25 21:40:52'),(111,45,'action complete via WP Cron','2022-01-25 03:21:57','2022-01-25 03:21:57'),(120,49,'action started via WP Cron','2022-01-25 23:44:15','2022-01-25 23:44:15'),(121,50,'action created','2022-01-25 23:44:16','2022-01-25 23:44:16'),(122,49,'action complete via WP Cron','2022-01-25 23:44:16','2022-01-25 23:44:16'),(123,50,'action started via WP Cron','2022-01-26 01:58:32','2022-01-26 01:58:32'),(125,50,'action complete via WP Cron','2022-01-26 01:58:33','2022-01-26 01:58:33'),(129,53,'action started via WP Cron','2022-01-26 06:07:55','2022-01-26 06:07:55'),(165,68,'action complete via WP Cron','2022-01-28 01:58:33','2022-01-28 01:58:33'),(128,53,'action created','2022-01-26 06:07:55','2022-01-26 06:07:55'),(130,53,'action complete via WP Cron','2022-01-26 06:07:55','2022-01-26 06:07:55'),(144,60,'action started via Async Request','2022-01-27 03:19:55','2022-01-27 03:19:55'),(143,60,'action created','2022-01-27 03:19:52','2022-01-27 03:19:52'),(145,60,'action complete via Async Request','2022-01-27 03:19:55','2022-01-27 03:19:55'),(155,65,'action started via Async Request','2022-01-27 16:02:45','2022-01-27 16:02:45'),(154,65,'action created','2022-01-27 16:01:11','2022-01-27 16:01:11'),(156,65,'action complete via Async Request','2022-01-27 16:02:45','2022-01-27 16:02:45'),(162,68,'action created','2022-01-27 23:53:34','2022-01-27 23:53:34'),(163,68,'action started via WP Cron','2022-01-28 01:58:31','2022-01-28 01:58:31'),(169,71,'action started via WP Cron','2022-01-28 06:28:04','2022-01-28 06:28:04'),(286,125,'action started via Async Request','2022-02-01 06:08:54','2022-02-01 06:08:54'),(168,71,'action created','2022-01-28 06:28:04','2022-01-28 06:28:04'),(170,71,'action complete via WP Cron','2022-01-28 06:28:04','2022-01-28 06:28:04'),(280,122,'action complete via WP Cron','2022-02-01 00:15:23','2022-02-01 00:15:23'),(248,108,'action started via Async Request','2022-01-31 05:08:57','2022-01-31 05:08:57'),(228,98,'action complete via WP Cron','2022-01-30 05:03:29','2022-01-30 05:03:29'),(287,125,'action complete via Async Request','2022-02-01 06:08:54','2022-02-01 06:08:54'),(226,98,'action created','2022-01-30 05:03:29','2022-01-30 05:03:29'),(227,98,'action started via WP Cron','2022-01-30 05:03:29','2022-01-30 05:03:29'),(213,90,'action complete via WP Cron','2022-01-29 08:04:36','2022-01-29 08:04:36'),(210,90,'action created','2022-01-29 06:02:42','2022-01-29 06:02:42'),(208,89,'action complete via WP Cron','2022-01-29 01:59:53','2022-01-29 01:59:53'),(211,90,'action started via WP Cron','2022-01-29 08:04:34','2022-01-29 08:04:34'),(207,89,'action started via WP Cron','2022-01-29 01:59:53','2022-01-29 01:59:53'),(203,86,'action complete via WP Cron','2022-01-28 21:38:46','2022-01-28 21:38:46'),(206,89,'action created','2022-01-29 01:59:53','2022-01-29 01:59:53'),(201,86,'action started via WP Cron','2022-01-28 21:38:46','2022-01-28 21:38:46'),(200,86,'action created','2022-01-28 19:37:27','2022-01-28 19:37:27'),(249,108,'action complete via Async Request','2022-01-31 05:08:57','2022-01-31 05:08:57'),(247,108,'action created','2022-01-31 05:08:54','2022-01-31 05:08:54'),(279,122,'action started via WP Cron','2022-02-01 00:15:23','2022-02-01 00:15:23'),(278,122,'action created','2022-02-01 00:13:35','2022-02-01 00:13:35'),(285,125,'action created','2022-02-01 06:08:51','2022-02-01 06:08:51'),(274,119,'action complete via WP Cron','2022-01-31 22:33:16','2022-01-31 22:33:16'),(275,121,'action created','2022-02-01 00:11:11','2022-02-01 00:11:11'),(276,121,'action started via WP Cron','2022-02-01 00:11:32','2022-02-01 00:11:32'),(277,121,'action complete via WP Cron','2022-02-01 00:11:32','2022-02-01 00:11:32'),(271,119,'action created','2022-01-31 20:08:39','2022-01-31 20:08:39'),(272,119,'action started via WP Cron','2022-01-31 22:33:14','2022-01-31 22:33:14'),(290,126,'action started via WP Cron','2022-02-01 10:19:21','2022-02-01 10:19:21'),(289,126,'action created','2022-02-01 07:59:54','2022-02-01 07:59:54'),(296,129,'action created','2022-02-01 17:26:21','2022-02-01 17:26:21'),(292,126,'action complete via WP Cron','2022-02-01 10:19:23','2022-02-01 10:19:23'),(297,129,'action started via WP Cron','2022-02-01 19:47:04','2022-02-01 19:47:04'),(321,139,'action started via WP Cron','2022-02-03 02:49:18','2022-02-03 02:49:18'),(299,129,'action complete via WP Cron','2022-02-01 19:47:07','2022-02-01 19:47:07'),(305,133,'action started via Async Request','2022-02-02 02:00:58','2022-02-02 02:00:58'),(304,133,'action created','2022-02-02 02:00:55','2022-02-02 02:00:55'),(306,133,'action complete via Async Request','2022-02-02 02:00:58','2022-02-02 02:00:58'),(317,137,'action complete via WP Cron','2022-02-02 20:34:49','2022-02-02 20:34:49'),(315,137,'action started via WP Cron','2022-02-02 20:34:47','2022-02-02 20:34:47'),(314,137,'action created','2022-02-02 18:29:25','2022-02-02 18:29:25'),(320,140,'action created','2022-02-03 02:49:18','2022-02-03 02:49:18'),(319,139,'action created','2022-02-03 00:20:19','2022-02-03 00:20:19'),(367,161,'action started via WP Cron','2022-02-05 02:21:05','2022-02-05 02:21:05'),(323,139,'action complete via WP Cron','2022-02-03 02:49:19','2022-02-03 02:49:19'),(324,140,'action started via WP Cron','2022-02-03 02:49:19','2022-02-03 02:49:19'),(325,140,'action complete via WP Cron','2022-02-03 02:49:19','2022-02-03 02:49:19'),(350,153,'action started via WP Cron','2022-02-04 02:41:24','2022-02-04 02:41:24'),(342,149,'action complete via Async Request','2022-02-03 15:45:12','2022-02-03 15:45:12'),(349,153,'action created','2022-02-04 02:41:24','2022-02-04 02:41:24'),(341,149,'action started via Async Request','2022-02-03 15:45:12','2022-02-03 15:45:12'),(340,149,'action created','2022-02-03 15:45:04','2022-02-03 15:45:04'),(351,153,'action complete via WP Cron','2022-02-04 02:41:24','2022-02-04 02:41:24'),(365,160,'action created','2022-02-05 01:58:27','2022-02-05 01:58:27'),(366,161,'action created','2022-02-05 02:21:05','2022-02-05 02:21:05'),(368,161,'action complete via WP Cron','2022-02-05 02:21:05','2022-02-05 02:21:05'),(369,160,'action started via WP Cron','2022-02-05 04:06:18','2022-02-05 04:06:18'),(370,162,'action created','2022-02-05 04:06:20','2022-02-05 04:06:20'),(371,160,'action complete via WP Cron','2022-02-05 04:06:20','2022-02-05 04:06:20'),(372,162,'action started via WP Cron','2022-02-05 06:12:31','2022-02-05 06:12:31'),(378,165,'action created','2022-02-05 13:00:40','2022-02-05 13:00:40'),(374,162,'action complete via WP Cron','2022-02-05 06:12:33','2022-02-05 06:12:33'),(379,165,'action started via WP Cron','2022-02-05 15:30:37','2022-02-05 15:30:37'),(380,166,'action created','2022-02-05 15:30:38','2022-02-05 15:30:38'),(381,165,'action complete via WP Cron','2022-02-05 15:30:38','2022-02-05 15:30:38'),(382,166,'action started via WP Cron','2022-02-05 17:36:44','2022-02-05 17:36:44'),(392,171,'action started via Async Request','2022-02-06 03:36:44','2022-02-06 03:36:44'),(384,166,'action complete via WP Cron','2022-02-05 17:36:46','2022-02-05 17:36:46'),(390,170,'action created','2022-02-06 03:31:07','2022-02-06 03:31:07'),(391,171,'action created','2022-02-06 03:36:42','2022-02-06 03:36:42'),(393,171,'action complete via Async Request','2022-02-06 03:36:44','2022-02-06 03:36:44'),(394,170,'action started via WP Cron','2022-02-06 05:51:10','2022-02-06 05:51:10'),(408,178,'action started via Async Request','2022-02-07 02:05:54','2022-02-07 02:05:54'),(396,170,'action complete via WP Cron','2022-02-06 05:51:12','2022-02-06 05:51:12'),(419,182,'action started via WP Cron','2022-02-07 08:31:04','2022-02-07 08:31:04'),(407,178,'action created','2022-02-07 02:05:52','2022-02-07 02:05:52'),(409,178,'action complete via Async Request','2022-02-07 02:05:54','2022-02-07 02:05:54'),(418,181,'action complete via WP Cron','2022-02-07 06:18:41','2022-02-07 06:18:41'),(417,182,'action created','2022-02-07 06:18:41','2022-02-07 06:18:41'),(416,181,'action started via WP Cron','2022-02-07 06:18:39','2022-02-07 06:18:39'),(415,181,'action created','2022-02-07 03:54:49','2022-02-07 03:54:49'),(421,182,'action complete via WP Cron','2022-02-07 08:31:06','2022-02-07 08:31:06'),(424,184,'action started via WP Cron','2022-02-07 14:00:16','2022-02-07 14:00:16'),(423,184,'action created','2022-02-07 11:56:16','2022-02-07 11:56:16'),(434,189,'action started via Async Request','2022-02-08 06:12:24','2022-02-08 06:12:24'),(426,184,'action complete via WP Cron','2022-02-07 14:00:18','2022-02-07 14:00:18'),(439,191,'action created','2022-02-08 13:03:17','2022-02-08 13:03:17'),(433,189,'action created','2022-02-08 06:12:21','2022-02-08 06:12:21'),(435,189,'action complete via Async Request','2022-02-08 06:12:24','2022-02-08 06:12:24'),(441,192,'action started via WP Cron','2022-02-08 14:24:38','2022-02-08 14:24:38'),(440,192,'action created','2022-02-08 14:24:20','2022-02-08 14:24:20'),(442,192,'action complete via WP Cron','2022-02-08 14:24:38','2022-02-08 14:24:38'),(443,191,'action started via Async Request','2022-02-08 15:04:21','2022-02-08 15:04:21'),(445,191,'action complete via Async Request','2022-02-08 15:04:23','2022-02-08 15:04:23'),(448,194,'action started via WP Cron','2022-02-08 20:03:36','2022-02-08 20:03:36'),(447,194,'action created','2022-02-08 17:46:29','2022-02-08 17:46:29'),(449,195,'action created','2022-02-08 20:03:38','2022-02-08 20:03:38'),(450,194,'action complete via WP Cron','2022-02-08 20:03:38','2022-02-08 20:03:38'),(451,195,'action started via WP Cron','2022-02-08 22:32:40','2022-02-08 22:32:40'),(457,198,'action started via Async Request','2022-02-09 02:55:36','2022-02-09 02:55:36'),(453,195,'action complete via WP Cron','2022-02-08 22:32:42','2022-02-08 22:32:42'),(456,198,'action created','2022-02-09 02:55:33','2022-02-09 02:55:33'),(455,197,'action created','2022-02-09 01:07:10','2022-02-09 01:07:10'),(458,198,'action complete via Async Request','2022-02-09 02:55:36','2022-02-09 02:55:36'),(459,197,'action started via WP Cron','2022-02-09 03:34:58','2022-02-09 03:34:58'),(465,201,'action started via WP Cron','2022-02-09 06:30:53','2022-02-09 06:30:53'),(461,197,'action complete via WP Cron','2022-02-09 03:35:00','2022-02-09 03:35:00'),(464,201,'action created','2022-02-09 06:30:53','2022-02-09 06:30:53'),(463,200,'action created','2022-02-09 06:18:50','2022-02-09 06:18:50'),(466,201,'action complete via WP Cron','2022-02-09 06:30:53','2022-02-09 06:30:53'),(467,200,'action started via WP Cron','2022-02-09 08:47:02','2022-02-09 08:47:02'),(469,200,'action complete via WP Cron','2022-02-09 08:47:04','2022-02-09 08:47:04'),(498,215,'action started via Async Request','2022-02-10 06:13:32','2022-02-10 06:13:32'),(497,214,'action complete via WP Cron','2022-02-10 04:08:00','2022-02-10 04:08:00'),(496,215,'action created','2022-02-10 04:08:00','2022-02-10 04:08:00'),(493,214,'action created','2022-02-10 01:59:10','2022-02-10 01:59:10'),(494,212,'action complete via WP Cron','2022-02-10 01:59:10','2022-02-10 01:59:10'),(488,212,'action created','2022-02-09 23:01:28','2022-02-09 23:01:28'),(491,212,'action started via WP Cron','2022-02-10 01:59:10','2022-02-10 01:59:10'),(495,214,'action started via WP Cron','2022-02-10 04:07:58','2022-02-10 04:07:58'),(499,216,'action created','2022-02-10 06:13:33','2022-02-10 06:13:33'),(500,215,'action complete via Async Request','2022-02-10 06:13:33','2022-02-10 06:13:33'),(501,217,'action created','2022-02-10 06:50:20','2022-02-10 06:50:20'),(502,217,'action started via Async Request','2022-02-10 06:50:22','2022-02-10 06:50:22'),(503,217,'action complete via Async Request','2022-02-10 06:50:22','2022-02-10 06:50:22'),(504,216,'action started via WP Cron','2022-02-10 08:16:12','2022-02-10 08:16:12'),(506,216,'action complete via WP Cron','2022-02-10 08:16:13','2022-02-10 08:16:13'),(525,227,'action started via WP Cron','2022-02-11 06:55:07','2022-02-11 06:55:07'),(523,226,'action created','2022-02-11 05:00:56','2022-02-11 05:00:56'),(521,224,'action complete via WP Cron','2022-02-11 00:49:24','2022-02-11 00:49:24'),(524,227,'action created','2022-02-11 06:55:07','2022-02-11 06:55:07'),(518,224,'action created','2022-02-10 22:23:33','2022-02-10 22:23:33'),(519,224,'action started via WP Cron','2022-02-11 00:49:22','2022-02-11 00:49:22'),(526,227,'action complete via WP Cron','2022-02-11 06:55:07','2022-02-11 06:55:07'),(527,226,'action started via WP Cron','2022-02-11 07:20:49','2022-02-11 07:20:49'),(529,226,'action complete via WP Cron','2022-02-11 07:20:51','2022-02-11 07:20:51'),(532,229,'action started via WP Cron','2022-02-11 12:46:11','2022-02-11 12:46:11'),(531,229,'action created','2022-02-11 10:38:19','2022-02-11 10:38:19'),(534,229,'action complete via WP Cron','2022-02-11 12:46:13','2022-02-11 12:46:13'),(543,233,'action complete via WP Cron','2022-02-11 22:27:40','2022-02-11 22:27:40'),(546,235,'action started via WP Cron','2022-02-12 04:18:51','2022-02-12 04:18:51'),(541,233,'action started via WP Cron','2022-02-11 22:27:38','2022-02-11 22:27:38'),(540,233,'action created','2022-02-11 20:06:32','2022-02-11 20:06:32'),(545,235,'action created','2022-02-12 01:58:18','2022-02-12 01:58:18'),(547,236,'action created','2022-02-12 04:18:53','2022-02-12 04:18:53'),(548,235,'action complete via WP Cron','2022-02-12 04:18:53','2022-02-12 04:18:53'),(549,236,'action started via WP Cron','2022-02-12 06:19:32','2022-02-12 06:19:32'),(569,245,'action started via WP Cron','2022-02-13 06:19:32','2022-02-13 06:19:32'),(551,236,'action complete via WP Cron','2022-02-12 06:19:34','2022-02-12 06:19:34'),(552,238,'action created','2022-02-12 06:19:35','2022-02-12 06:19:35'),(553,238,'action started via Async Request','2022-02-12 06:19:38','2022-02-12 06:19:38'),(554,238,'action complete via Async Request','2022-02-12 06:19:38','2022-02-12 06:19:38'),(562,242,'action created','2022-02-12 23:36:56','2022-02-12 23:36:56'),(563,242,'action started via WP Cron','2022-02-13 01:58:25','2022-02-13 01:58:25'),(565,242,'action complete via WP Cron','2022-02-13 01:58:27','2022-02-13 01:58:27'),(568,245,'action created','2022-02-13 06:19:24','2022-02-13 06:19:24'),(570,245,'action complete via WP Cron','2022-02-13 06:19:32','2022-02-13 06:19:32'),(583,250,'action complete via WP Cron','2022-02-14 00:50:25','2022-02-14 00:50:25'),(587,253,'action started via Async Request','2022-02-14 06:20:30','2022-02-14 06:20:30'),(581,250,'action started via WP Cron','2022-02-14 00:50:23','2022-02-14 00:50:23'),(580,250,'action created','2022-02-13 22:45:30','2022-02-13 22:45:30'),(586,253,'action created','2022-02-14 06:20:28','2022-02-14 06:20:28'),(595,255,'action complete via WP Cron','2022-02-14 16:52:56','2022-02-14 16:52:56'),(588,253,'action complete via Async Request','2022-02-14 06:20:30','2022-02-14 06:20:30'),(603,260,'action started via Async Request','2022-02-15 06:26:58','2022-02-15 06:26:58'),(593,255,'action started via WP Cron','2022-02-14 16:52:54','2022-02-14 16:52:54'),(592,255,'action created','2022-02-14 14:42:14','2022-02-14 14:42:14'),(601,259,'action created','2022-02-15 06:18:05','2022-02-15 06:18:05'),(602,260,'action created','2022-02-15 06:26:56','2022-02-15 06:26:56'),(604,260,'action complete via Async Request','2022-02-15 06:26:58','2022-02-15 06:26:58'),(605,259,'action started via WP Cron','2022-02-15 08:18:33','2022-02-15 08:18:33'),(607,259,'action complete via WP Cron','2022-02-15 08:18:35','2022-02-15 08:18:35'),(610,262,'action started via WP Cron','2022-02-15 13:15:35','2022-02-15 13:15:35'),(609,262,'action created','2022-02-15 11:02:56','2022-02-15 11:02:56'),(611,263,'action created','2022-02-15 13:15:37','2022-02-15 13:15:37'),(612,262,'action complete via WP Cron','2022-02-15 13:15:37','2022-02-15 13:15:37'),(613,264,'action created','2022-02-15 13:19:40','2022-02-15 13:19:40'),(614,264,'action started via WP Cron','2022-02-15 13:20:33','2022-02-15 13:20:33'),(615,264,'action complete via WP Cron','2022-02-15 13:20:33','2022-02-15 13:20:33'),(616,265,'action created','2022-02-15 13:57:08','2022-02-15 13:57:08');
/*!40000 ALTER TABLE `wpob_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_logs` with 290 row(s)
--

--
-- Table structure for table `wpob_termmeta`
--

DROP TABLE IF EXISTS `wpob_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_termmeta`
--

LOCK TABLES `wpob_termmeta` WRITE;
/*!40000 ALTER TABLE `wpob_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_termmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_koko_analytics_post_stats`
--

DROP TABLE IF EXISTS `wpob_koko_analytics_post_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_koko_analytics_post_stats` (
  `date` date NOT NULL,
  `id` bigint(20) unsigned NOT NULL,
  `visitors` mediumint(8) unsigned NOT NULL,
  `pageviews` mediumint(8) unsigned NOT NULL,
  PRIMARY KEY (`date`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=ascii;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_koko_analytics_post_stats`
--

LOCK TABLES `wpob_koko_analytics_post_stats` WRITE;
/*!40000 ALTER TABLE `wpob_koko_analytics_post_stats` DISABLE KEYS */;
INSERT INTO `wpob_koko_analytics_post_stats` VALUES ('2022-04-09',29,1,1),('2022-04-10',29,1,1),('2022-04-11',29,2,2),('2022-04-11',37,1,1),('2022-04-11',39,1,1),('2022-04-12',29,3,3),('2022-04-12',37,1,1),('2022-04-12',39,1,1);
/*!40000 ALTER TABLE `wpob_koko_analytics_post_stats` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_koko_analytics_post_stats` with 8 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_attempts`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_attempts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_attempts` (
  `attempt_id` int(11) NOT NULL AUTO_INCREMENT,
  `course_id` int(11) DEFAULT NULL,
  `quiz_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `total_questions` int(11) DEFAULT NULL,
  `total_answered_questions` int(11) DEFAULT NULL,
  `total_marks` decimal(9,2) DEFAULT NULL,
  `earned_marks` decimal(9,2) DEFAULT NULL,
  `attempt_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attempt_status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attempt_ip` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attempt_started_at` datetime DEFAULT NULL,
  `attempt_ended_at` datetime DEFAULT NULL,
  `is_manually_reviewed` int(1) DEFAULT NULL,
  `manually_reviewed_at` datetime DEFAULT NULL,
  PRIMARY KEY (`attempt_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_attempts`
--

LOCK TABLES `wpob_tutor_quiz_attempts` WRITE;
/*!40000 ALTER TABLE `wpob_tutor_quiz_attempts` DISABLE KEYS */;
INSERT INTO `wpob_tutor_quiz_attempts` VALUES (1,15,19,1,1,1,1.00,1.00,'a:9:{s:10:\"time_limit\";a:3:{s:10:\"time_value\";s:1:\"0\";s:9:\"time_type\";s:7:\"minutes\";s:18:\"time_limit_seconds\";i:0;}s:13:\"feedback_mode\";s:7:\"default\";s:16:\"attempts_allowed\";s:1:\"5\";s:13:\"passing_grade\";s:2:\"80\";s:24:\"max_questions_for_answer\";s:2:\"10\";s:20:\"question_layout_view\";s:0:\"\";s:15:\"questions_order\";s:4:\"rand\";s:29:\"short_answer_characters_limit\";s:3:\"200\";s:34:\"open_ended_answer_characters_limit\";s:3:\"500\";}','attempt_ended','71.248.161.219','2022-01-17 17:35:40','2022-01-17 17:35:46',NULL,NULL);
/*!40000 ALTER TABLE `wpob_tutor_quiz_attempts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_tutor_quiz_attempts` with 1 row(s)
--

--
-- Table structure for table `wpob_posts`
--

DROP TABLE IF EXISTS `wpob_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=527 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_posts`
--

LOCK TABLES `wpob_posts` WRITE;
/*!40000 ALTER TABLE `wpob_posts` DISABLE KEYS */;
INSERT INTO `wpob_posts` VALUES (235,1,'2022-04-06 15:21:31','2022-04-06 15:21:31','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 15:21:31','2022-04-06 15:21:31','',29,'https://the-collab.com/?p=235',0,'revision','',0),(238,1,'2022-04-06 15:51:23','2022-04-06 15:51:23','','','','inherit','closed','closed','','as-seen-on-a-sussex-directories-inc-site','','','2022-04-06 15:53:56','2022-04-06 15:53:56','',29,'https://the-collab.com/wp-content/uploads/2022/04/Head-shot.jpg',0,'attachment','image/jpeg',0),(239,1,'2022-04-06 16:03:33','2022-04-06 16:03:33','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:03:33','2022-04-06 16:03:33','',29,'https://the-collab.com/?p=239',0,'revision','',0),(240,1,'2022-04-06 16:03:33','2022-04-06 16:03:33','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:03:33','2022-04-06 16:03:33','',29,'https://the-collab.com/?p=240',0,'revision','',0),(241,1,'2022-04-06 16:03:33','2022-04-06 16:03:33','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Ariel Axelrod, LMHC, NCC</h2>		\n		Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:03:33','2022-04-06 16:03:33','',29,'https://the-collab.com/?p=241',0,'revision','',0),(308,1,'2022-04-07 14:55:11','2022-04-07 14:55:11','','Notice of Privacy Practices','','inherit','','closed','','notice-of-privacy-practices','','','2022-04-07 14:55:11','2022-04-07 14:55:11','',0,'https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf',0,'attachment','application/pdf',0),(227,1,'2022-04-06 14:48:56','2022-04-06 14:48:56','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2022. All rights reserved.</p>','Home Page','','inherit','closed','closed','','225-revision-v1','','','2022-04-06 14:48:56','2022-04-06 14:48:56','',225,'https://the-collab.com/?p=227',0,'revision','',0),(393,1,'2022-04-07 16:05:58','2022-04-07 16:05:58','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:05:58','2022-04-07 16:05:58','',138,'https://the-collab.com/?p=393',0,'revision','',0),(391,1,'2022-04-07 16:05:58','2022-04-07 16:05:58','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:05:58','2022-04-07 16:05:58','',138,'https://the-collab.com/?p=391',0,'revision','',0),(338,1,'2022-04-07 15:22:10','2022-04-07 15:22:10','','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:22:10','2022-04-07 15:22:10','',138,'https://the-collab.com/?p=338',0,'revision','',0),(339,1,'2022-04-07 15:22:10','2022-04-07 15:22:10','','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:22:10','2022-04-07 15:22:10','',138,'https://the-collab.com/?p=339',0,'revision','',0),(236,1,'2022-04-06 15:21:32','2022-04-06 15:21:32','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 15:21:32','2022-04-06 15:21:32','',29,'https://the-collab.com/?p=236',0,'revision','',0),(234,1,'2022-04-06 15:21:31','2022-04-06 15:21:31','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 15:21:31','2022-04-06 15:21:31','',29,'https://the-collab.com/?p=234',0,'revision','',0),(16,1,'2022-01-17 17:30:35','2022-01-17 17:30:35','','467131_299797613426044_221850757_o_299797613426044','','inherit','','closed','','467131_299797613426044_221850757_o_299797613426044','','','2022-01-17 17:30:35','2022-01-17 17:30:35','',0,'https://the-collab.com/wp-content/uploads/2022/01/467131_299797613426044_221850757_o_299797613426044.jpg',0,'attachment','image/jpeg',0),(17,1,'2022-01-17 17:32:24','2022-01-17 17:32:24','The cat is very smart','The cat','','publish','closed','closed','','the-cat','','','2022-01-17 17:32:24','2022-01-17 17:32:24','',15,'https://the-collab.com/topics/the-cat/',1,'topics','',0),(18,1,'2022-01-17 17:32:45','2022-01-17 17:32:45','<p>This is a cat</p>','Draft Lesson','','publish','closed','closed','','draft-lesson','','','2022-01-17 17:32:45','2022-01-17 17:32:45','',17,'https://the-collab.com/courses/my-cat-yahu/lesson/draft-lesson/',1,'lesson','',0),(19,1,'2022-01-17 17:33:09','2022-01-17 17:33:09','A cat','What is it?','','publish','closed','closed','','what-is-it','','','2022-01-17 17:33:09','2022-01-17 17:33:09','',17,'https://the-collab.com/courses/my-cat-yahu/tutor_quiz/what-is-it/',2,'tutor_quiz','',0),(21,1,'2022-01-17 17:35:26','2022-01-17 17:35:26','','Course Enrolled &ndash; January 17, 2022 @ 5:35 pm','','completed','closed','closed','','course-enrolled-january-17-2022-535-pm','','','2022-01-17 17:35:26','2022-01-17 17:35:26','',15,'https://the-collab.com/?post_type=tutor_enrolled&p=21',0,'tutor_enrolled','',0),(35,1,'2022-02-08 14:39:40','2022-02-08 14:39:40','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hello-elementor','','','2022-02-08 14:39:40','2022-02-08 14:39:40','',0,'https://the-collab.com/2022/02/08/wp-global-styles-hello-elementor/',0,'wp_global_styles','',0),(130,1,'2022-02-17 15:43:09','2022-02-17 15:43:09','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:43:09','2022-02-17 15:43:09','',29,'https://the-collab.com/?p=130',0,'revision','',0),(23,1,'2022-01-23 18:32:15','2022-01-23 18:32:15','','Default Kit','','publish','closed','closed','','default-kit','','','2022-04-08 20:44:42','2022-04-08 20:44:42','',0,'https://the-collab.com/?p=23',0,'elementor_library','',0),(309,1,'2022-04-07 14:55:15','2022-04-07 14:55:15','','bill of rights PDF','','inherit','closed','closed','','patient-bill-of-rights-and-patient-responsibilities','','','2022-04-07 14:55:32','2022-04-07 14:55:32','',0,'https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf',0,'attachment','application/pdf',0),(34,1,'2022-02-08 14:40:08','2022-02-08 14:40:08','','Specialties','','trash','closed','closed','','specialties__trashed','','','2022-04-06 16:48:41','2022-04-06 16:48:41','',0,'https://the-collab.com/?page_id=34',0,'page','',0),(29,1,'2022-01-24 18:17:17','2022-01-24 18:17:17','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','publish','closed','closed','','home','','','2022-04-08 21:28:06','2022-04-08 21:28:06','',0,'https://the-collab.com/?page_id=29',0,'page','',0),(30,1,'2022-01-24 18:17:17','2022-01-24 18:17:17','','Home','','inherit','closed','closed','','29-revision-v1','','','2022-01-24 18:17:17','2022-01-24 18:17:17','',29,'https://the-collab.com/?p=30',0,'revision','',0),(103,1,'2022-02-17 15:28:13','2022-02-17 15:28:13','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-zoologist','','','2022-02-17 15:28:13','2022-02-17 15:28:13','',0,'https://the-collab.com/?p=103',0,'wp_global_styles','',0),(36,1,'2022-02-08 14:40:08','2022-02-08 14:40:08','','Specialties','','inherit','closed','closed','','34-revision-v1','','','2022-02-08 14:40:08','2022-02-08 14:40:08','',34,'https://the-collab.com/?p=36',0,'revision','',0),(37,1,'2022-02-08 14:41:15','2022-02-08 14:41:15','<h2>Ariel Axelrod, LMHC</h2><h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','publish','closed','closed','','policies-faqs-and-fees','','','2022-04-08 21:45:46','2022-04-08 21:45:46','',0,'https://the-collab.com/?page_id=37',0,'page','',0),(38,1,'2022-02-08 14:41:15','2022-02-08 14:41:15','','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-02-08 14:41:15','2022-02-08 14:41:15','',37,'https://the-collab.com/?p=38',0,'revision','',0),(39,1,'2022-02-08 14:46:02','2022-02-08 14:46:02','<h2>    Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2><p>You can use the form to contact me to learn more and book a consultation.</p><p><strong>Office Address</strong><br />The Therapy Center for Mind and Body<br />1234 Broadway<br />Somerville, MA</p><p>My office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.</p><p><strong><u>Transportation</u></strong></p><p><strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.</p><p><strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.</p><p><strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center.</p><p><em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em></p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','publish','closed','closed','','contact','','','2022-04-08 22:04:05','2022-04-08 22:04:05','',0,'https://the-collab.com/?page_id=39',0,'page','',0),(40,1,'2022-02-08 14:46:02','2022-02-08 14:46:02','','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-02-08 14:46:02','2022-02-08 14:46:02','',39,'https://the-collab.com/?p=40',0,'revision','',0),(42,1,'2022-02-08 14:51:58','2022-02-08 14:51:58','','Navigation','','publish','closed','closed','','navigation','','','2022-02-08 15:16:26','2022-02-08 15:16:26','',0,'https://the-collab.com/2022/02/08/navigation/',0,'wp_navigation','',0),(43,1,'2022-02-08 14:52:02','2022-02-08 14:52:02','','Navigation','','publish','closed','closed','','navigation-2','','','2022-02-08 14:52:02','2022-02-08 14:52:02','',0,'https://the-collab.com/2022/02/08/navigation-2/',0,'wp_navigation','',0),(44,1,'2022-02-08 15:16:11','2022-02-08 15:16:11','','Navigation 3','','publish','closed','closed','','navigation-3','','','2022-02-08 15:16:11','2022-02-08 15:16:11','',0,'https://the-collab.com/2022/02/08/navigation-3/',0,'wp_navigation','',0),(182,1,'2022-02-17 18:08:05','2022-02-17 18:08:05','<p>Ariel Axelrod, LMHC</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:08:05','2022-02-17 18:08:05','',29,'https://the-collab.com/?p=182',0,'revision','',0),(45,1,'2022-02-08 15:16:25','2022-02-08 15:16:25','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"ref\":44,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /-->','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-08 15:16:25','2022-02-08 15:16:25','',29,'https://the-collab.com/?p=45',0,'revision','',0),(46,1,'2022-02-08 15:16:26','2022-02-08 15:16:26','','Navigation','','inherit','closed','closed','','42-revision-v1','','','2022-02-08 15:16:26','2022-02-08 15:16:26','',42,'https://the-collab.com/?p=46',0,'revision','',0),(55,1,'2022-02-15 13:54:26','2022-02-15 13:54:26','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-02-15 13:54:26','2022-02-15 13:54:26','',0,'https://the-collab.com/2022/02/15/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),(62,1,'2022-02-15 14:27:27','2022-02-15 14:27:27','<p> </p>\n<p><!-- wp:group --></p>\n<!-- wp:columns -->\n<!-- wp:column {\"width\":\"100%\"} -->\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p> </p>\n<!-- /wp:paragraph -->\n<!-- /wp:column -->\n<!-- /wp:columns --><!-- wp:navigation {\"ref\":49,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /-->\n<p><!-- /wp:group --><!-- wp:paragraph --></p>\n<p> </p>\n<p><!-- /wp:paragraph --><!-- wp:group --></p>\n \n<p><!-- /wp:group --><!-- wp:group --></p>\n<!-- wp:columns -->\n<!-- wp:column {\"width\":\"33.33%\"} -->\n<h2 style=\"flex-basis: 33.33%;\"><!-- wp:verse -->About the Practice<!-- /wp:verse --></h2>\n<!-- /wp:column --><!-- wp:column {\"width\":\"66.66%\"} -->\n<!-- wp:paragraph -->\n<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<!-- /wp:paragraph --><!-- wp:paragraph -->\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:column -->\n<!-- /wp:columns -->\n<p><!-- /wp:group --><!-- wp:paragraph --></p>\n<p> </p>\n<p><!-- /wp:paragraph --></p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:27:27','2022-02-15 14:27:27','',29,'https://the-collab.com/?p=62',0,'revision','',0),(49,1,'2022-02-15 13:44:12','2022-02-15 13:44:12','','Page Navigation','','publish','closed','closed','','page-navigation','','','2022-02-15 13:44:12','2022-02-15 13:44:12','',0,'https://the-collab.com/2022/02/15/page-navigation/',0,'wp_navigation','',0),(184,1,'2022-02-17 18:09:00','2022-02-17 18:09:00','<p>Ariel Axelrod, LMHC</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:09:00','2022-02-17 18:09:00','',29,'https://the-collab.com/?p=184',0,'revision','',0),(64,1,'2022-02-15 14:27:27','2022-02-15 14:27:27','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:27:27','2022-02-15 14:27:27','',29,'https://the-collab.com/?p=64',0,'revision','',0),(61,1,'2022-02-15 14:25:18','2022-02-15 14:25:18','<p> </p>\n<p><!-- wp:group --></p>\n<!-- wp:columns -->\n<!-- wp:column {\"width\":\"100%\"} -->\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p> </p>\n<!-- /wp:paragraph -->\n<!-- /wp:column -->\n<!-- /wp:columns --><!-- wp:navigation {\"ref\":49,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /-->\n<p><!-- /wp:group --><!-- wp:paragraph --></p>\n<p> </p>\n<p><!-- /wp:paragraph --><!-- wp:group --></p>\n \n<p><!-- /wp:group --><!-- wp:group --></p>\n<!-- wp:columns -->\n<!-- wp:column {\"width\":\"33.33%\"} -->\n<h2 style=\"flex-basis: 33.33%;\"><!-- wp:verse -->About the Practice<!-- /wp:verse --></h2>\n<!-- /wp:column --><!-- wp:column {\"width\":\"66.66%\"} -->\n<!-- wp:paragraph -->\n<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<!-- /wp:paragraph --><!-- wp:paragraph -->\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:column -->\n<!-- /wp:columns -->\n<p><!-- /wp:group --><!-- wp:paragraph --></p>\n<p> </p>\n<p><!-- /wp:paragraph --></p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:25:18','2022-02-15 14:25:18','',29,'https://the-collab.com/?p=61',0,'revision','',0),(50,1,'2022-02-15 13:45:52','2022-02-15 13:45:52','<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:navigation {\"ref\":49,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:verse -->\n<pre class=\"wp-block-verse\">About the Practice</pre>\n<!-- /wp:verse --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 13:45:52','2022-02-15 13:45:52','',29,'https://the-collab.com/?p=50',0,'revision','',0),(57,1,'2022-02-15 14:23:13','2022-02-15 14:23:13','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 14:23:13','2022-02-15 14:23:13','',23,'https://the-collab.com/?p=57',0,'revision','',0),(58,1,'2022-02-15 14:23:13','2022-02-15 14:23:13','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 14:23:13','2022-02-15 14:23:13','',23,'https://the-collab.com/?p=58',0,'revision','',0),(59,1,'2022-02-15 14:25:18','2022-02-15 14:25:18','<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:navigation {\"ref\":49,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:verse -->\n<pre class=\"wp-block-verse\">About the Practice</pre>\n<!-- /wp:verse --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:25:18','2022-02-15 14:25:18','',29,'https://the-collab.com/?p=59',0,'revision','',0),(60,1,'2022-02-15 14:25:18','2022-02-15 14:25:18','<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:navigation {\"ref\":49,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:verse -->\n<pre class=\"wp-block-verse\">About the Practice</pre>\n<!-- /wp:verse --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:25:18','2022-02-15 14:25:18','',29,'https://the-collab.com/?p=60',0,'revision','',0),(63,1,'2022-02-15 14:27:27','2022-02-15 14:27:27','<p> </p>\n<p><!-- wp:group --></p>\n<!-- wp:columns -->\n<!-- wp:column {\"width\":\"100%\"} -->\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p> </p>\n<!-- /wp:paragraph -->\n<!-- /wp:column -->\n<!-- /wp:columns --><!-- wp:navigation {\"ref\":49,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} /-->\n<p><!-- /wp:group --><!-- wp:paragraph --></p>\n<p> </p>\n<p><!-- /wp:paragraph --><!-- wp:group --></p>\n \n<p><!-- /wp:group --><!-- wp:group --></p>\n<!-- wp:columns -->\n<!-- wp:column {\"width\":\"33.33%\"} -->\n<h2 style=\"flex-basis: 33.33%;\"><!-- wp:verse -->About the Practice<!-- /wp:verse --></h2>\n<!-- /wp:column --><!-- wp:column {\"width\":\"66.66%\"} -->\n<!-- wp:paragraph -->\n<p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<!-- /wp:paragraph --><!-- wp:paragraph -->\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:column -->\n<!-- /wp:columns -->\n<p><!-- /wp:group --><!-- wp:paragraph --></p>\n<p> </p>\n<p><!-- /wp:paragraph --></p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:27:27','2022-02-15 14:27:27','',29,'https://the-collab.com/?p=63',0,'revision','',0),(72,1,'2022-02-15 14:33:33','2022-02-15 14:33:33','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:33:33','2022-02-15 14:33:33','',29,'https://the-collab.com/?p=72',0,'revision','',0),(66,1,'2022-02-15 14:30:27','2022-02-15 14:30:27','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 14:30:27','2022-02-15 14:30:27','',23,'https://the-collab.com/?p=66',0,'revision','',0),(67,1,'2022-02-15 14:31:12','2022-02-15 14:31:12','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 14:31:12','2022-02-15 14:31:12','',23,'https://the-collab.com/?p=67',0,'revision','',0),(68,1,'2022-02-15 14:32:08','2022-02-15 14:32:08','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 14:32:08','2022-02-15 14:32:08','',23,'https://the-collab.com/?p=68',0,'revision','',0),(69,1,'2022-02-15 14:32:52','2022-02-15 14:32:52','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 14:32:52','2022-02-15 14:32:52','',23,'https://the-collab.com/?p=69',0,'revision','',0),(70,1,'2022-02-15 14:33:33','2022-02-15 14:33:33','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:33:33','2022-02-15 14:33:33','',29,'https://the-collab.com/?p=70',0,'revision','',0),(71,1,'2022-02-15 14:33:33','2022-02-15 14:33:33','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 14:33:33','2022-02-15 14:33:33','',29,'https://the-collab.com/?p=71',0,'revision','',0),(181,1,'2022-02-17 18:08:05','2022-02-17 18:08:05','<p>Ariel Axelrod, LMHC</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:08:05','2022-02-17 18:08:05','',29,'https://the-collab.com/?p=181',0,'revision','',0),(76,1,'2022-02-15 18:58:18','2022-02-15 18:58:18','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 18:58:18','2022-02-15 18:58:18','',29,'https://the-collab.com/?p=76',0,'revision','',0),(74,1,'2022-02-15 18:58:18','2022-02-15 18:58:18','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 18:58:18','2022-02-15 18:58:18','',29,'https://the-collab.com/?p=74',0,'revision','',0),(75,1,'2022-02-15 18:58:18','2022-02-15 18:58:18','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 18:58:18','2022-02-15 18:58:18','',29,'https://the-collab.com/?p=75',0,'revision','',0),(78,1,'2022-02-15 19:26:53','2022-02-15 19:26:53','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 19:26:53','2022-02-15 19:26:53','',29,'https://the-collab.com/?p=78',0,'revision','',0),(79,1,'2022-02-15 19:26:53','2022-02-15 19:26:53','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 19:26:53','2022-02-15 19:26:53','',29,'https://the-collab.com/?p=79',0,'revision','',0),(80,1,'2022-02-15 19:26:53','2022-02-15 19:26:53','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-15 19:26:53','2022-02-15 19:26:53','',29,'https://the-collab.com/?p=80',0,'revision','',0),(245,1,'2022-04-06 16:10:28','2022-04-06 16:10:28','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:10:28','2022-04-06 16:10:28','',29,'https://the-collab.com/?p=245',0,'revision','',0),(88,1,'2022-02-15 19:33:01','2022-02-15 19:33:01','','Elementor-post-screenshot_85_2022-02-15-19-33-01_2520b61e.png','','inherit','','closed','','elementor-post-screenshot_85_2022-02-15-19-33-01_2520b61e-png','','','2022-02-15 19:33:01','2022-02-15 19:33:01','',0,'https://the-collab.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_85_2022-02-15-19-33-01_2520b61e.png',0,'attachment','image/png',0),(97,1,'2022-02-15 19:42:25','2022-02-15 19:42:25','','Elementor-post-screenshot_93_2022-02-15-19-42-25_674acb7d.png','','inherit','','closed','','elementor-post-screenshot_93_2022-02-15-19-42-25_674acb7d-png','','','2022-02-15 19:42:25','2022-02-15 19:42:25','',0,'https://the-collab.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_93_2022-02-15-19-42-25_674acb7d.png',0,'attachment','image/png',0),(99,1,'2022-02-15 19:43:10','2022-02-15 19:43:10','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-15 19:43:10','2022-02-15 19:43:10','',23,'https://the-collab.com/?p=99',0,'revision','',0),(107,1,'2022-02-17 15:31:33','2022-02-17 15:31:33','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:31:33','2022-02-17 15:31:33','',29,'https://the-collab.com/?p=107',0,'revision','',0),(105,1,'2022-02-17 15:31:33','2022-02-17 15:31:33','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:31:33','2022-02-17 15:31:33','',29,'https://the-collab.com/?p=105',0,'revision','',0),(106,1,'2022-02-17 15:31:33','2022-02-17 15:31:33','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:31:33','2022-02-17 15:31:33','',29,'https://the-collab.com/?p=106',0,'revision','',0),(111,1,'2022-02-17 15:31:53','2022-02-17 15:31:53','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:31:53','2022-02-17 15:31:53','',29,'https://the-collab.com/?p=111',0,'revision','',0),(109,1,'2022-02-17 15:31:53','2022-02-17 15:31:53','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:31:53','2022-02-17 15:31:53','',29,'https://the-collab.com/?p=109',0,'revision','',0),(110,1,'2022-02-17 15:31:53','2022-02-17 15:31:53','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:31:53','2022-02-17 15:31:53','',29,'https://the-collab.com/?p=110',0,'revision','',0),(125,1,'2022-02-17 15:40:20','2022-02-17 15:40:20','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:40:20','2022-02-17 15:40:20','',29,'https://the-collab.com/?p=125',0,'revision','',0),(243,1,'2022-04-06 16:07:41','2022-04-06 16:07:41','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Ariel Axelrod, LMHC, NCC</h2>		\n		Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:07:41','2022-04-06 16:07:41','',29,'https://the-collab.com/?p=243',0,'revision','',0),(244,1,'2022-04-06 16:07:41','2022-04-06 16:07:41','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:07:41','2022-04-06 16:07:41','',29,'https://the-collab.com/?p=244',0,'revision','',0),(242,1,'2022-04-06 16:07:41','2022-04-06 16:07:41','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Ariel Axelrod, LMHC, NCC</h2>		\n		Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:07:41','2022-04-06 16:07:41','',29,'https://the-collab.com/?p=242',0,'revision','',0),(225,1,'2022-04-06 14:48:56','2022-04-06 14:48:56','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2022. All rights reserved.</p>','Home Page','','trash','closed','closed','','home-page__trashed','','','2022-04-06 16:42:56','2022-04-06 16:42:56','',0,'https://the-collab.com/?elementor_library=home-page',0,'elementor_library','',0),(226,1,'2022-04-06 14:48:56','2022-04-06 14:48:56','','Home Page','','inherit','closed','closed','','225-revision-v1','','','2022-04-06 14:48:56','2022-04-06 14:48:56','',225,'https://the-collab.com/?p=226',0,'revision','',0),(526,1,'2022-04-15 15:58:52','0000-00-00 00:00:00','','Auto Draft','','auto-draft','','','','','','','2022-04-15 15:58:52','0000-00-00 00:00:00','',0,'https://the-collab.com/?p=526',0,'post','',0),(123,1,'2022-02-17 15:40:19','2022-02-17 15:40:19','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:40:19','2022-02-17 15:40:19','',29,'https://the-collab.com/?p=123',0,'revision','',0),(124,1,'2022-02-17 15:40:19','2022-02-17 15:40:19','<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:40:19','2022-02-17 15:40:19','',29,'https://the-collab.com/?p=124',0,'revision','',0),(129,1,'2022-02-17 15:40:56','2022-02-17 15:40:56','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:40:56','2022-02-17 15:40:56','',29,'https://the-collab.com/?p=129',0,'revision','',0),(127,1,'2022-02-17 15:40:56','2022-02-17 15:40:56','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:40:56','2022-02-17 15:40:56','',29,'https://the-collab.com/?p=127',0,'revision','',0),(128,1,'2022-02-17 15:40:56','2022-02-17 15:40:56','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:40:56','2022-02-17 15:40:56','',29,'https://the-collab.com/?p=128',0,'revision','',0),(131,1,'2022-02-17 15:43:09','2022-02-17 15:43:09','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h2>About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:43:09','2022-02-17 15:43:09','',29,'https://the-collab.com/?p=131',0,'revision','',0),(148,1,'2022-02-17 15:52:22','2022-02-17 15:52:22','<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:52:22','2022-02-17 15:52:22','',29,'https://the-collab.com/?p=148',0,'revision','',0),(132,1,'2022-02-17 15:43:09','2022-02-17 15:43:09','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:43:09','2022-02-17 15:43:09','',29,'https://the-collab.com/?p=132',0,'revision','',0),(133,1,'2022-04-06 17:26:30','2022-02-17 15:45:39',' ','','','publish','closed','closed','','133','','','2022-04-06 17:26:30','2022-04-06 17:26:30','',0,'https://the-collab.com/?p=133',1,'nav_menu_item','',0),(134,1,'2022-04-06 17:26:30','2022-02-17 15:45:39',' ','','','publish','closed','closed','','134','','','2022-04-06 17:26:30','2022-04-06 17:26:30','',0,'https://the-collab.com/?p=134',5,'nav_menu_item','',0),(135,1,'2022-04-06 17:26:30','2022-02-17 15:45:39',' ','','','publish','closed','closed','','135','','','2022-04-06 17:26:30','2022-04-06 17:26:30','',0,'https://the-collab.com/?p=135',3,'nav_menu_item','',0),(145,1,'2022-02-17 15:50:40','2022-02-17 15:50:40','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:50:40','2022-02-17 15:50:40','',29,'https://the-collab.com/?p=145',0,'revision','',0),(303,1,'2022-04-07 14:47:03','2022-04-07 14:47:03','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n		<strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:47:03','2022-04-07 14:47:03','',37,'https://the-collab.com/?p=303',0,'revision','',0),(138,1,'2022-02-17 15:46:42','2022-02-17 15:46:42','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><em>Margin notes: A blog comprising commentary on the state of the art and the ecology of mental healthcare provision. Not medical advice, nor intended to replace it or mimick it in any way.</em></p><h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','publish','closed','closed','','blog','','','2022-04-08 21:59:09','2022-04-08 21:59:09','',0,'https://the-collab.com/?page_id=138',0,'page','',0),(139,1,'2022-02-17 15:45:48','2022-02-17 15:45:48','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-blockbase','','','2022-02-17 15:45:48','2022-02-17 15:45:48','',0,'https://the-collab.com/?p=139',0,'wp_global_styles','',0),(140,1,'2022-04-06 17:26:30','2022-02-17 15:46:42',' ','','','publish','closed','closed','','140','','','2022-04-06 17:26:30','2022-04-06 17:26:30','',0,'https://the-collab.com/?p=140',4,'nav_menu_item','',0),(141,1,'2022-02-17 15:46:42','2022-02-17 15:46:42','','Blog','','inherit','closed','closed','','138-revision-v1','','','2022-02-17 15:46:42','2022-02-17 15:46:42','',138,'https://the-collab.com/?p=141',0,'revision','',0),(142,1,'2022-02-17 15:46:53','2022-02-17 15:46:53','','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-02-17 15:46:53','2022-02-17 15:46:53','',138,'https://the-collab.com/?p=142',0,'revision','',0),(143,1,'2022-02-17 15:50:40','2022-02-17 15:50:40','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:50:40','2022-02-17 15:50:40','',29,'https://the-collab.com/?p=143',0,'revision','',0),(144,1,'2022-02-17 15:50:40','2022-02-17 15:50:40','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:50:40','2022-02-17 15:50:40','',29,'https://the-collab.com/?p=144',0,'revision','',0),(146,1,'2022-02-17 15:52:22','2022-02-17 15:52:22','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:52:22','2022-02-17 15:52:22','',29,'https://the-collab.com/?p=146',0,'revision','',0),(147,1,'2022-02-17 15:52:22','2022-02-17 15:52:22','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 15:52:22','2022-02-17 15:52:22','',29,'https://the-collab.com/?p=147',0,'revision','',0),(178,1,'2022-02-17 17:09:46','2022-02-17 17:09:46','<p>Ariel Axelrod, LMHC</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 17:09:46','2022-02-17 17:09:46','',29,'https://the-collab.com/?p=178',0,'revision','',0),(183,1,'2022-02-17 18:09:00','2022-02-17 18:09:00','<p>Ariel Axelrod, LMHC</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:09:00','2022-02-17 18:09:00','',29,'https://the-collab.com/?p=183',0,'revision','',0),(180,1,'2022-02-17 18:08:05','2022-02-17 18:08:05','<p>Ariel Axelrod, LMHC</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:08:05','2022-02-17 18:08:05','',29,'https://the-collab.com/?p=180',0,'revision','',0),(152,1,'2022-02-17 16:03:58','2022-02-17 16:03:58','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC</h2>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:03:58','2022-02-17 16:03:58','',29,'https://the-collab.com/?p=152',0,'revision','',0),(150,1,'2022-02-17 16:03:58','2022-02-17 16:03:58','<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:03:58','2022-02-17 16:03:58','',29,'https://the-collab.com/?p=150',0,'revision','',0),(151,1,'2022-02-17 16:03:58','2022-02-17 16:03:58','<style>/*! elementor - v3.5.5 - 03-02-2022 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:03:58','2022-02-17 16:03:58','',29,'https://the-collab.com/?p=151',0,'revision','',0),(156,1,'2022-02-17 16:09:02','2022-02-17 16:09:02','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:09:02','2022-02-17 16:09:02','',29,'https://the-collab.com/?p=156',0,'revision','',0),(154,1,'2022-02-17 16:09:02','2022-02-17 16:09:02','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC</h2>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:09:02','2022-02-17 16:09:02','',29,'https://the-collab.com/?p=154',0,'revision','',0),(155,1,'2022-02-17 16:09:02','2022-02-17 16:09:02','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC</h2>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:09:02','2022-02-17 16:09:02','',29,'https://the-collab.com/?p=155',0,'revision','',0),(157,1,'2022-02-17 16:09:22','2022-02-17 16:09:22','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:09:22','2022-02-17 16:09:22','',29,'https://the-collab.com/?p=157',0,'revision','',0),(158,1,'2022-02-17 16:09:22','2022-02-17 16:09:22','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:09:22','2022-02-17 16:09:22','',29,'https://the-collab.com/?p=158',0,'revision','',0),(159,1,'2022-02-17 16:09:22','2022-02-17 16:09:22','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:09:22','2022-02-17 16:09:22','',29,'https://the-collab.com/?p=159',0,'revision','',0),(160,1,'2022-02-17 16:10:45','2022-02-17 16:10:45','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:10:45','2022-02-17 16:10:45','',29,'https://the-collab.com/?p=160',0,'revision','',0),(161,1,'2022-02-17 16:10:45','2022-02-17 16:10:45','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:10:45','2022-02-17 16:10:45','',29,'https://the-collab.com/?p=161',0,'revision','',0),(162,1,'2022-02-17 16:10:45','2022-02-17 16:10:45','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:10:45','2022-02-17 16:10:45','',29,'https://the-collab.com/?p=162',0,'revision','',0),(163,1,'2022-02-17 16:11:58','2022-02-17 16:11:58','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:11:58','2022-02-17 16:11:58','',29,'https://the-collab.com/?p=163',0,'revision','',0),(164,1,'2022-02-17 16:11:58','2022-02-17 16:11:58','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:11:58','2022-02-17 16:11:58','',29,'https://the-collab.com/?p=164',0,'revision','',0),(165,1,'2022-02-17 16:11:58','2022-02-17 16:11:58','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:11:58','2022-02-17 16:11:58','',29,'https://the-collab.com/?p=165',0,'revision','',0),(166,1,'2022-02-17 16:12:24','2022-02-17 16:12:24','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:12:24','2022-02-17 16:12:24','',29,'https://the-collab.com/?p=166',0,'revision','',0),(167,1,'2022-02-17 16:12:24','2022-02-17 16:12:24','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:12:24','2022-02-17 16:12:24','',29,'https://the-collab.com/?p=167',0,'revision','',0),(168,1,'2022-02-17 16:12:24','2022-02-17 16:12:24','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:12:24','2022-02-17 16:12:24','',29,'https://the-collab.com/?p=168',0,'revision','',0),(169,1,'2022-02-17 16:14:23','2022-02-17 16:14:23','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:14:23','2022-02-17 16:14:23','',29,'https://the-collab.com/?p=169',0,'revision','',0),(170,1,'2022-02-17 16:14:23','2022-02-17 16:14:23','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ariel Axelrod, LMHC</h4>		\n		<h3> </h3><h3><strong>About the Practice</strong></h3><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:14:23','2022-02-17 16:14:23','',29,'https://the-collab.com/?p=170',0,'revision','',0),(171,1,'2022-02-17 16:14:24','2022-02-17 16:14:24','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC</h2>		\n		<h4>About the Practice</h4><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 16:14:24','2022-02-17 16:14:24','',29,'https://the-collab.com/?p=171',0,'revision','',0),(185,1,'2022-02-17 18:09:00','2022-02-17 18:09:00','<p>    Ariel Axelrod, LMHC</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:09:00','2022-02-17 18:09:00','',29,'https://the-collab.com/?p=185',0,'revision','',0),(174,1,'2022-02-17 16:58:55','2022-02-17 16:58:55','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-17 16:58:55','2022-02-17 16:58:55','',23,'https://the-collab.com/?p=174',0,'revision','',0),(175,1,'2022-02-17 17:01:11','2022-02-17 17:01:11','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-17 17:01:11','2022-02-17 17:01:11','',23,'https://the-collab.com/?p=175',0,'revision','',0),(176,1,'2022-02-17 17:09:46','2022-02-17 17:09:46','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC</h2>		\n		<h4>About the Practice</h4><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 17:09:46','2022-02-17 17:09:46','',29,'https://the-collab.com/?p=176',0,'revision','',0),(173,1,'2022-02-17 16:24:08','2022-02-17 16:24:08','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-17 16:24:08','2022-02-17 16:24:08','',23,'https://the-collab.com/?p=173',0,'revision','',0),(177,1,'2022-02-17 17:09:46','2022-02-17 17:09:46','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC</h2>		\n		<h4>About the Practice</h4><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 17:09:46','2022-02-17 17:09:46','',29,'https://the-collab.com/?p=177',0,'revision','',0),(199,1,'2022-02-17 18:17:57','2022-02-17 18:17:57','<p>    Ariel Axelrod, LMHC</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:17:57','2022-02-17 18:17:57','',29,'https://the-collab.com/?p=199',0,'revision','',0),(196,1,'2022-02-17 18:14:35','2022-02-17 18:14:35','<p>    Ariel Axelrod, LMHC</p>		\n		<p>About the Practice</p><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','axelrodlmhc2','','trash','closed','closed','','axelrodlmhc2__trashed','','','2022-04-06 16:43:00','2022-04-06 16:43:00','',0,'https://the-collab.com/?elementor_library=axelrodlmhc2',0,'elementor_library','',0),(200,1,'2022-02-17 18:17:57','2022-02-17 18:17:57','<p>    Ariel Axelrod, LMHC</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:17:57','2022-02-17 18:17:57','',29,'https://the-collab.com/?p=200',0,'revision','',0),(201,1,'2022-02-17 18:17:57','2022-02-17 18:17:57','<p>    Ariel Axelrod, LMHC</p>		\n		<h2>About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:17:57','2022-02-17 18:17:57','',29,'https://the-collab.com/?p=201',0,'revision','',0),(197,1,'2022-02-17 18:14:35','2022-02-17 18:14:35','','axelrodlmhc2','','inherit','closed','closed','','196-revision-v1','','','2022-02-17 18:14:35','2022-02-17 18:14:35','',196,'https://the-collab.com/?p=197',0,'revision','',0),(198,1,'2022-02-17 18:14:35','2022-02-17 18:14:35','<p>    Ariel Axelrod, LMHC</p>		\n		<p>About the Practice</p><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','axelrodlmhc2','','inherit','closed','closed','','196-revision-v1','','','2022-02-17 18:14:35','2022-02-17 18:14:35','',196,'https://the-collab.com/?p=198',0,'revision','',0),(205,1,'2022-02-17 18:23:02','2022-02-17 18:23:02','<p>    Ariel Axelrod, LMHC</p>		\n		<h2>About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:23:02','2022-02-17 18:23:02','',29,'https://the-collab.com/?p=205',0,'revision','',0),(203,1,'2022-02-17 18:23:01','2022-02-17 18:23:01','<p>    Ariel Axelrod, LMHC</p>		\n		<h2>About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:23:01','2022-02-17 18:23:01','',29,'https://the-collab.com/?p=203',0,'revision','',0),(204,1,'2022-02-17 18:23:01','2022-02-17 18:23:01','<p>    Ariel Axelrod, LMHC</p>		\n		<h2>About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:23:01','2022-02-17 18:23:01','',29,'https://the-collab.com/?p=204',0,'revision','',0),(210,1,'2022-02-17 18:31:17','2022-02-17 18:31:17','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:31:17','2022-02-17 18:31:17','',29,'https://the-collab.com/?p=210',0,'revision','',0),(211,1,'2022-02-17 18:32:32','2022-02-17 18:32:32','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:32:32','2022-02-17 18:32:32','',29,'https://the-collab.com/?p=211',0,'revision','',0),(207,1,'2022-02-17 18:27:45','2022-02-17 18:27:45','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-02-17 18:27:45','2022-02-17 18:27:45','',23,'https://the-collab.com/?p=207',0,'revision','',0),(208,1,'2022-02-17 18:31:17','2022-02-17 18:31:17','<p>    Ariel Axelrod, LMHC</p>		\n		<h2>About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:31:17','2022-02-17 18:31:17','',29,'https://the-collab.com/?p=208',0,'revision','',0),(209,1,'2022-02-17 18:31:17','2022-02-17 18:31:17','<p>    Ariel Axelrod, LMHC</p>		\n		<h2>About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:31:17','2022-02-17 18:31:17','',29,'https://the-collab.com/?p=209',0,'revision','',0),(212,1,'2022-02-17 18:32:32','2022-02-17 18:32:32','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:32:32','2022-02-17 18:32:32','',29,'https://the-collab.com/?p=212',0,'revision','',0),(213,1,'2022-02-17 18:32:33','2022-02-17 18:32:33','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:32:33','2022-02-17 18:32:33','',29,'https://the-collab.com/?p=213',0,'revision','',0),(214,1,'2022-02-17 18:35:40','2022-02-17 18:35:40','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:35:40','2022-02-17 18:35:40','',29,'https://the-collab.com/?p=214',0,'revision','',0),(215,1,'2022-02-17 18:35:40','2022-02-17 18:35:40','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:35:40','2022-02-17 18:35:40','',29,'https://the-collab.com/?p=215',0,'revision','',0),(216,1,'2022-02-17 18:35:41','2022-02-17 18:35:41','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:35:41','2022-02-17 18:35:41','',29,'https://the-collab.com/?p=216',0,'revision','',0),(217,1,'2022-02-17 18:42:13','2022-02-17 18:42:13','','Ariel Axelrod','','inherit','','closed','','ariel-axelrod','','','2022-02-17 18:42:13','2022-02-17 18:42:13','',29,'https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp',0,'attachment','image/webp',0),(218,1,'2022-02-17 18:48:42','2022-02-17 18:48:42','Yahu, office cat','','','inherit','closed','closed','','office-cat','','','2022-04-06 15:52:53','2022-04-06 15:52:53','',29,'https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp',0,'attachment','image/webp',0),(222,1,'2022-02-17 18:50:47','2022-02-17 18:50:47','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:50:47','2022-02-17 18:50:47','',29,'https://the-collab.com/?p=222',0,'revision','',0),(220,1,'2022-02-17 18:50:47','2022-02-17 18:50:47','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:50:47','2022-02-17 18:50:47','',29,'https://the-collab.com/?p=220',0,'revision','',0),(221,1,'2022-02-17 18:50:47','2022-02-17 18:50:47','<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<p>Copyright 2021-2022. All rights reserved.</p>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-02-17 18:50:47','2022-02-17 18:50:47','',29,'https://the-collab.com/?p=221',0,'revision','',0),(246,1,'2022-04-06 16:10:28','2022-04-06 16:10:28','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:10:28','2022-04-06 16:10:28','',29,'https://the-collab.com/?p=246',0,'revision','',0),(247,1,'2022-04-06 16:10:28','2022-04-06 16:10:28','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:10:28','2022-04-06 16:10:28','',29,'https://the-collab.com/?p=247',0,'revision','',0),(248,1,'2022-04-06 16:14:55','2022-04-06 16:14:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:14:55','2022-04-06 16:14:55','',29,'https://the-collab.com/?p=248',0,'revision','',0),(249,1,'2022-04-06 16:14:55','2022-04-06 16:14:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:14:55','2022-04-06 16:14:55','',29,'https://the-collab.com/?p=249',0,'revision','',0),(250,1,'2022-04-06 16:14:55','2022-04-06 16:14:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:14:55','2022-04-06 16:14:55','',29,'https://the-collab.com/?p=250',0,'revision','',0),(254,1,'2022-04-06 16:19:08','2022-04-06 16:19:08','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:19:08','2022-04-06 16:19:08','',29,'https://the-collab.com/?p=254',0,'revision','',0),(252,1,'2022-04-06 16:19:07','2022-04-06 16:19:07','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:19:07','2022-04-06 16:19:07','',29,'https://the-collab.com/?p=252',0,'revision','',0),(253,1,'2022-04-06 16:19:07','2022-04-06 16:19:07','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:19:07','2022-04-06 16:19:07','',29,'https://the-collab.com/?p=253',0,'revision','',0),(255,1,'2022-04-06 16:24:02','2022-04-06 16:24:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:24:02','2022-04-06 16:24:02','',29,'https://the-collab.com/?p=255',0,'revision','',0),(256,1,'2022-04-06 16:24:02','2022-04-06 16:24:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:24:02','2022-04-06 16:24:02','',29,'https://the-collab.com/?p=256',0,'revision','',0),(257,1,'2022-04-06 16:24:02','2022-04-06 16:24:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong><ul><li>Licensed mental health counselor (LMHC). Licensed in Massachusetts, license no. 11882</li><li>National certified counselor (NCC). Certified by NBCC, cert no. 944326.</li></ul><strong>Education</strong><ul><li>MA in Clinical Mental Health Counseling, concentration in Health and Behavioral Medicine, William James College</li><li>BA in Russian Area Studies, Wellesley College</li></ul><strong>Clinical Training</strong><ul><li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li><li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li><li>Supervised Mediation Placement: Newton District Court, Newton, MA</li></ul><strong>Professional Associations</strong><ul><li>Massachusetts Mental Health Counselors Association</li></ul>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:24:02','2022-04-06 16:24:02','',29,'https://the-collab.com/?p=257',0,'revision','',0),(258,1,'2022-04-06 16:29:31','2022-04-06 16:29:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong><ul><li>Licensed mental health counselor (LMHC). Licensed in Massachusetts, license no. 11882</li><li>National certified counselor (NCC). Certified by NBCC, cert no. 944326.</li></ul><strong>Education</strong><ul><li>MA in Clinical Mental Health Counseling, concentration in Health and Behavioral Medicine, William James College</li><li>BA in Russian Area Studies, Wellesley College</li></ul><strong>Clinical Training</strong><ul><li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li><li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li><li>Supervised Mediation Placement: Newton District Court, Newton, MA</li></ul><strong>Professional Associations</strong><ul><li>Massachusetts Mental Health Counselors Association</li></ul>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:29:31','2022-04-06 16:29:31','',29,'https://the-collab.com/?p=258',0,'revision','',0),(259,1,'2022-04-06 16:29:31','2022-04-06 16:29:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong><ul><li>Licensed mental health counselor (LMHC). Licensed in Massachusetts, license no. 11882</li><li>National certified counselor (NCC). Certified by NBCC, cert no. 944326.</li></ul><strong>Education</strong><ul><li>MA in Clinical Mental Health Counseling, concentration in Health and Behavioral Medicine, William James College</li><li>BA in Russian Area Studies, Wellesley College</li></ul><strong>Clinical Training</strong><ul><li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li><li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li><li>Supervised Mediation Placement: Newton District Court, Newton, MA</li></ul><strong>Professional Associations</strong><ul><li>Massachusetts Mental Health Counselors Association</li></ul>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:29:31','2022-04-06 16:29:31','',29,'https://the-collab.com/?p=259',0,'revision','',0),(441,1,'2022-04-08 12:55:21','2022-04-08 12:55:21','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 12:55:21','2022-04-08 12:55:21','',29,'https://the-collab.com/?p=441',0,'revision','',0),(260,1,'2022-04-06 16:29:31','2022-04-06 16:29:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC). <br>Licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC). <br>Certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:29:31','2022-04-06 16:29:31','',29,'https://the-collab.com/?p=260',0,'revision','',0),(261,1,'2022-04-06 16:30:18','2022-04-06 16:30:18','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC). <br>Licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC). <br>Certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:30:18','2022-04-06 16:30:18','',29,'https://the-collab.com/?p=261',0,'revision','',0),(262,1,'2022-04-06 16:30:18','2022-04-06 16:30:18','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC). <br>Licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC). <br>Certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:30:18','2022-04-06 16:30:18','',29,'https://the-collab.com/?p=262',0,'revision','',0),(263,1,'2022-04-06 16:30:18','2022-04-06 16:30:18','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:30:18','2022-04-06 16:30:18','',29,'https://the-collab.com/?p=263',0,'revision','',0),(264,1,'2022-04-06 16:31:24','2022-04-06 16:31:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>','front page','','trash','closed','closed','','front-page__trashed','','','2022-04-08 21:18:59','2022-04-08 21:18:59','',0,'https://the-collab.com/?elementor_library=front-page',0,'elementor_library','',0),(265,1,'2022-04-06 16:31:24','2022-04-06 16:31:24','','front page','','inherit','closed','closed','','264-revision-v1','','','2022-04-06 16:31:24','2022-04-06 16:31:24','',264,'https://the-collab.com/?p=265',0,'revision','',0),(266,1,'2022-04-06 16:31:24','2022-04-06 16:31:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>','front page','','inherit','closed','closed','','264-revision-v1','','','2022-04-06 16:31:24','2022-04-06 16:31:24','',264,'https://the-collab.com/?p=266',0,'revision','',0),(267,1,'2022-04-06 16:31:43','2022-04-06 16:31:43','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:31:43','2022-04-06 16:31:43','',29,'https://the-collab.com/?p=267',0,'revision','',0),(268,1,'2022-04-06 16:31:43','2022-04-06 16:31:43','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:31:43','2022-04-06 16:31:43','',29,'https://the-collab.com/?p=268',0,'revision','',0),(269,1,'2022-04-06 16:31:44','2022-04-06 16:31:44','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-06 16:31:44','2022-04-06 16:31:44','',29,'https://the-collab.com/?p=269',0,'revision','',0),(270,1,'2022-04-06 16:36:30','2022-04-06 16:36:30','','Specialties','','inherit','closed','closed','','34-autosave-v1','','','2022-04-06 16:36:31','2022-04-06 16:36:31','',34,'https://the-collab.com/?p=270',0,'revision','',0),(273,1,'2022-04-06 16:47:12','2022-04-06 16:47:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','trash','closed','closed','','home-2__trashed','','','2022-04-06 17:04:37','2022-04-06 17:04:37','',0,'https://the-collab.com/?page_id=273',0,'page','',0),(274,1,'2022-04-06 16:57:15','2022-04-06 16:57:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #2 #2','','trash','closed','closed','','home__trashed','','','2022-04-06 16:57:15','2022-04-06 16:57:15','',0,'https://the-collab.com/?page_id=274',0,'page','',0),(275,1,'2022-04-06 16:57:21','2022-04-06 16:57:21','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #2 #3','','trash','closed','closed','','home__trashed-2','','','2022-04-06 16:57:21','2022-04-06 16:57:21','',0,'https://the-collab.com/?page_id=275',0,'page','',0),(276,1,'2022-04-06 16:57:24','2022-04-06 16:57:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #2 #4','','trash','closed','closed','','home__trashed-3','','','2022-04-06 16:57:24','2022-04-06 16:57:24','',0,'https://the-collab.com/?page_id=276',0,'page','',0),(277,1,'2022-04-06 16:48:35','2022-04-06 16:48:35','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','273-revision-v1','','','2022-04-06 16:48:35','2022-04-06 16:48:35','',273,'https://the-collab.com/?p=277',0,'revision','',0),(278,1,'2022-04-06 16:49:19','2022-04-06 16:49:19','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialty','','inherit','closed','closed','','273-revision-v1','','','2022-04-06 16:49:19','2022-04-06 16:49:19','',273,'https://the-collab.com/?p=278',0,'revision','',0),(279,1,'2022-04-06 16:49:46','2022-04-06 16:49:46','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','273-revision-v1','','','2022-04-06 16:49:46','2022-04-06 16:49:46','',273,'https://the-collab.com/?p=279',0,'revision','',0),(280,1,'2022-04-06 16:57:15','2022-04-06 16:57:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #2 #2','','inherit','closed','closed','','274-revision-v1','','','2022-04-06 16:57:15','2022-04-06 16:57:15','',274,'https://the-collab.com/?p=280',0,'revision','',0),(281,1,'2022-04-06 16:57:21','2022-04-06 16:57:21','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #2 #3','','inherit','closed','closed','','275-revision-v1','','','2022-04-06 16:57:21','2022-04-06 16:57:21','',275,'https://the-collab.com/?p=281',0,'revision','',0),(282,1,'2022-04-06 16:57:24','2022-04-06 16:57:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #2 #4','','inherit','closed','closed','','276-revision-v1','','','2022-04-06 16:57:24','2022-04-06 16:57:24','',276,'https://the-collab.com/?p=282',0,'revision','',0),(283,1,'2022-04-06 17:02:36','2022-04-06 17:02:36','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #5','','trash','closed','closed','','home__trashed-4','','','2022-04-06 17:02:36','2022-04-06 17:02:36','',0,'https://the-collab.com/?page_id=283',0,'page','',0),(284,1,'2022-04-06 17:02:36','2022-04-06 17:02:36','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home #5','','inherit','closed','closed','','283-revision-v1','','','2022-04-06 17:02:36','2022-04-06 17:02:36','',283,'https://the-collab.com/?p=284',0,'revision','',0),(502,1,'2022-04-08 21:27:41','2022-04-08 21:27:41','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:27:41','2022-04-08 21:27:41','',29,'https://the-collab.com/?p=502',0,'revision','',0),(288,1,'2022-04-06 17:05:22','2022-04-06 17:05:22','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk oversimplification when we classify all technological struggle as addiction, and yet interactive interfaces are designed to hold attention for purposes not altogether germane to wellbeing. If this is an area of concern, we can build and test strategies for resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of <em>us</em>. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (a tool that can help us find our way again). This particular loss sometimes goes unnoticed in formal descriptions of health and wellbeing, but it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from school. Entering the workplace. Transitioning into a new career. Giving birth or adopting. Acclimating to life after an injury. Taking on new roles, or shedding old ones. Consider the time and energy needed to adjust to changes in self-identity. Therapy is a place to give life transitions the attention and respect they require. </p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','publish','closed','closed','','specialties','','','2022-04-08 21:40:20','2022-04-08 21:40:20','',0,'https://the-collab.com/?page_id=288',0,'page','',0),(289,1,'2022-04-06 17:04:52','2022-04-06 17:04:52','','Elementor #288','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:04:52','2022-04-06 17:04:52','',288,'https://the-collab.com/?p=289',0,'revision','',0),(290,1,'2022-04-06 17:26:30','2022-04-06 17:05:22',' ','','','publish','closed','closed','','290','','','2022-04-06 17:26:30','2022-04-06 17:26:30','',0,'https://the-collab.com/?p=290',2,'nav_menu_item','',0),(291,1,'2022-04-06 17:05:22','2022-04-06 17:05:22','','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:05:22','2022-04-06 17:05:22','',288,'https://the-collab.com/?p=291',0,'revision','',0),(296,1,'2022-04-06 17:14:34','2022-04-06 17:14:34','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Specialties</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:14:34','2022-04-06 17:14:34','',288,'https://the-collab.com/?p=296',0,'revision','',0),(297,1,'2022-04-06 17:25:31','2022-04-06 17:25:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Specialties</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:25:31','2022-04-06 17:25:31','',288,'https://the-collab.com/?p=297',0,'revision','',0),(298,1,'2022-04-06 17:25:31','2022-04-06 17:25:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Specialties</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:25:31','2022-04-06 17:25:31','',288,'https://the-collab.com/?p=298',0,'revision','',0),(293,1,'2022-04-06 17:08:59','2022-04-06 17:08:59','','cape cod beach','','inherit','closed','closed','','031129capecod33','','','2022-04-06 17:09:11','2022-04-06 17:09:11','',288,'https://the-collab.com/wp-content/uploads/2022/04/031129CapeCod33.jpg',0,'attachment','image/jpeg',0),(294,1,'2022-04-06 17:14:33','2022-04-06 17:14:33','','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:14:33','2022-04-06 17:14:33','',288,'https://the-collab.com/?p=294',0,'revision','',0),(295,1,'2022-04-06 17:14:34','2022-04-06 17:14:34','','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:14:34','2022-04-06 17:14:34','',288,'https://the-collab.com/?p=295',0,'revision','',0),(299,1,'2022-04-06 17:25:32','2022-04-06 17:25:32','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p>Executive Function</p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p>Issues with Technology</p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p>Relationships and Family Conflict</p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p>Creativity and Mastery</p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p>Body Image and Self-Esteem</p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p>Life Transitions</p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p>Anxiety and Stress Management</p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p>Depression</p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p>Grief and Loss</p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-06 17:25:32','2022-04-06 17:25:32','',288,'https://the-collab.com/?p=299',0,'revision','',0),(302,1,'2022-04-07 14:47:03','2022-04-07 14:47:03','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n		<strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:47:03','2022-04-07 14:47:03','',37,'https://the-collab.com/?p=302',0,'revision','',0),(304,1,'2022-04-07 14:47:03','2022-04-07 14:47:03','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:47:03','2022-04-07 14:47:03','',37,'https://the-collab.com/?p=304',0,'revision','',0),(301,1,'2022-04-07 14:46:15','2022-04-07 14:46:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n		<strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:46:15','2022-04-07 14:46:15','',37,'https://the-collab.com/?p=301',0,'revision','',0),(305,1,'2022-04-07 14:52:06','2022-04-07 14:52:06','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:52:06','2022-04-07 14:52:06','',37,'https://the-collab.com/?p=305',0,'revision','',0),(306,1,'2022-04-07 14:52:07','2022-04-07 14:52:07','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:52:07','2022-04-07 14:52:07','',37,'https://the-collab.com/?p=306',0,'revision','',0),(307,1,'2022-04-07 14:52:07','2022-04-07 14:52:07','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 14:52:07','2022-04-07 14:52:07','',37,'https://the-collab.com/?p=307',0,'revision','',0),(313,1,'2022-04-07 15:00:03','2022-04-07 15:00:03','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:00:03','2022-04-07 15:00:03','',37,'https://the-collab.com/?p=313',0,'revision','',0),(311,1,'2022-04-07 15:00:01','2022-04-07 15:00:01','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:00:01','2022-04-07 15:00:01','',37,'https://the-collab.com/?p=311',0,'revision','',0),(312,1,'2022-04-07 15:00:02','2022-04-07 15:00:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					My Notice of Privacy Practices is available here and my Patient Bill of Rights is available here.\n															<svg><use xlink:href=\"#fas-caret-right\" /></svg>\n								<svg><use xlink:href=\"#fas-caret-up\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:00:02','2022-04-07 15:00:02','',37,'https://the-collab.com/?p=312',0,'revision','',0),(314,1,'2022-04-07 15:01:02','2022-04-07 15:01:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:01:02','2022-04-07 15:01:02','',37,'https://the-collab.com/?p=314',0,'revision','',0),(315,1,'2022-04-07 15:01:02','2022-04-07 15:01:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:01:02','2022-04-07 15:01:02','',37,'https://the-collab.com/?p=315',0,'revision','',0),(316,1,'2022-04-07 15:01:02','2022-04-07 15:01:02','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:01:02','2022-04-07 15:01:02','',37,'https://the-collab.com/?p=316',0,'revision','',0),(392,1,'2022-04-07 16:05:58','2022-04-07 16:05:58','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:05:58','2022-04-07 16:05:58','',138,'https://the-collab.com/?p=392',0,'revision','',0),(394,1,'2022-04-07 16:06:55','2022-04-07 16:06:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:06:55','2022-04-07 16:06:55','',138,'https://the-collab.com/?p=394',0,'revision','',0),(395,1,'2022-04-07 16:06:55','2022-04-07 16:06:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:06:55','2022-04-07 16:06:55','',138,'https://the-collab.com/?p=395',0,'revision','',0),(396,1,'2022-04-07 16:06:55','2022-04-07 16:06:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:06:55','2022-04-07 16:06:55','',138,'https://the-collab.com/?p=396',0,'revision','',0),(397,1,'2022-04-07 16:07:29','2022-04-07 16:07:29','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:07:29','2022-04-07 16:07:29','',138,'https://the-collab.com/?p=397',0,'revision','',0),(398,1,'2022-04-07 16:07:29','2022-04-07 16:07:29','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:07:29','2022-04-07 16:07:29','',138,'https://the-collab.com/?p=398',0,'revision','',0),(320,1,'2022-04-07 15:06:59','2022-04-07 15:06:59','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p>Executive Function</p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p>Issues with Technology</p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p>Relationships and Family Conflict</p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p>Creativity and Mastery</p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p>Body Image and Self-Esteem</p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p>Life Transitions</p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p>Anxiety and Stress Management</p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p>Depression</p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p>Grief and Loss</p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:06:59','2022-04-07 15:06:59','',288,'https://the-collab.com/?p=320',0,'revision','',0),(321,1,'2022-04-07 15:06:59','2022-04-07 15:06:59','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p>Executive Function</p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p>Issues with Technology</p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p>Relationships and Family Conflict</p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p>Creativity and Mastery</p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p>Body Image and Self-Esteem</p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p>Life Transitions</p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p>Anxiety and Stress Management</p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p>Depression</p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p>Grief and Loss</p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:06:59','2022-04-07 15:06:59','',288,'https://the-collab.com/?p=321',0,'revision','',0),(322,1,'2022-04-07 15:07:00','2022-04-07 15:07:00','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p>Executive Function</p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p>Issues with Technology</p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p>Relationships and Family Conflict</p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p>Creativity and Mastery</p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p>Body Image and Self-Esteem</p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p>Life Transitions</p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p>Anxiety and Stress Management</p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p>Depression</p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p>Grief and Loss</p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:07:00','2022-04-07 15:07:00','',288,'https://the-collab.com/?p=322',0,'revision','',0),(323,1,'2022-04-07 15:12:40','2022-04-07 15:12:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p>Executive Function</p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p>Issues with Technology</p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p>Relationships and Family Conflict</p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p>Creativity and Mastery</p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p>Body Image and Self-Esteem</p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p>Life Transitions</p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p>Anxiety and Stress Management</p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p>Depression</p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p>Grief and Loss</p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:12:40','2022-04-07 15:12:40','',288,'https://the-collab.com/?p=323',0,'revision','',0),(324,1,'2022-04-07 15:12:40','2022-04-07 15:12:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p>Executive Function</p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p>Issues with Technology</p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p>Relationships and Family Conflict</p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p>Creativity and Mastery</p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p>Body Image and Self-Esteem</p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p>Life Transitions</p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p>Anxiety and Stress Management</p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p>Depression</p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p>Grief and Loss</p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:12:40','2022-04-07 15:12:40','',288,'https://the-collab.com/?p=324',0,'revision','',0),(325,1,'2022-04-07 15:12:40','2022-04-07 15:12:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:12:40','2022-04-07 15:12:40','',288,'https://the-collab.com/?p=325',0,'revision','',0),(326,1,'2022-04-07 15:13:05','2022-04-07 15:13:05','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:13:05','2022-04-07 15:13:05','',288,'https://the-collab.com/?p=326',0,'revision','',0),(327,1,'2022-04-07 15:13:05','2022-04-07 15:13:05','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:13:05','2022-04-07 15:13:05','',288,'https://the-collab.com/?p=327',0,'revision','',0),(328,1,'2022-04-07 15:13:05','2022-04-07 15:13:05','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:13:05','2022-04-07 15:13:05','',288,'https://the-collab.com/?p=328',0,'revision','',0),(329,1,'2022-04-07 15:13:51','2022-04-07 15:13:51','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:13:51','2022-04-07 15:13:51','',29,'https://the-collab.com/?p=329',0,'revision','',0),(330,1,'2022-04-07 15:13:51','2022-04-07 15:13:51','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:13:51','2022-04-07 15:13:51','',29,'https://the-collab.com/?p=330',0,'revision','',0),(331,1,'2022-04-07 15:13:51','2022-04-07 15:13:51','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:13:51','2022-04-07 15:13:51','',29,'https://the-collab.com/?p=331',0,'revision','',0),(332,1,'2022-04-07 15:14:54','2022-04-07 15:14:54','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:14:54','2022-04-07 15:14:54','',37,'https://the-collab.com/?p=332',0,'revision','',0),(333,1,'2022-04-07 15:14:54','2022-04-07 15:14:54','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:14:54','2022-04-07 15:14:54','',37,'https://the-collab.com/?p=333',0,'revision','',0),(334,1,'2022-04-07 15:14:54','2022-04-07 15:14:54','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:14:54','2022-04-07 15:14:54','',37,'https://the-collab.com/?p=334',0,'revision','',0),(340,1,'2022-04-07 15:22:10','2022-04-07 15:22:10','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:22:10','2022-04-07 15:22:10','',138,'https://the-collab.com/?p=340',0,'revision','',0),(341,1,'2022-04-07 15:35:39','2022-04-07 15:35:39','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:35:39','2022-04-07 15:35:39','',138,'https://the-collab.com/?p=341',0,'revision','',0),(342,1,'2022-04-07 15:35:39','2022-04-07 15:35:39','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:35:39','2022-04-07 15:35:39','',138,'https://the-collab.com/?p=342',0,'revision','',0),(418,1,'2022-04-07 16:50:12','2022-04-07 16:50:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:50:12','2022-04-07 16:50:12','',138,'https://the-collab.com/?p=418',0,'revision','',0),(419,1,'2022-04-07 16:50:12','2022-04-07 16:50:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:50:12','2022-04-07 16:50:12','',138,'https://the-collab.com/?p=419',0,'revision','',0),(343,1,'2022-04-07 15:35:40','2022-04-07 15:35:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:35:40','2022-04-07 15:35:40','',138,'https://the-collab.com/?p=343',0,'revision','',0),(344,1,'2022-04-07 15:37:39','2022-04-07 15:37:39','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:37:39','2022-04-07 15:37:39','',138,'https://the-collab.com/?p=344',0,'revision','',0),(345,1,'2022-04-07 15:37:39','2022-04-07 15:37:39','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:37:39','2022-04-07 15:37:39','',138,'https://the-collab.com/?p=345',0,'revision','',0),(346,1,'2022-04-07 15:37:39','2022-04-07 15:37:39','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:37:39','2022-04-07 15:37:39','',138,'https://the-collab.com/?p=346',0,'revision','',0),(347,1,'2022-04-07 15:38:15','2022-04-07 15:38:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:38:15','2022-04-07 15:38:15','',138,'https://the-collab.com/?p=347',0,'revision','',0),(348,1,'2022-04-07 15:38:15','2022-04-07 15:38:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Me</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:38:15','2022-04-07 15:38:15','',138,'https://the-collab.com/?p=348',0,'revision','',0),(416,1,'2022-04-07 16:43:13','2022-04-07 16:43:13','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:43:13','2022-04-07 16:43:13','',138,'https://the-collab.com/?p=416',0,'revision','',0),(349,1,'2022-04-07 15:38:15','2022-04-07 15:38:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:38:15','2022-04-07 15:38:15','',138,'https://the-collab.com/?p=349',0,'revision','',0),(350,1,'2022-04-07 15:38:23','2022-04-07 15:38:23','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:38:23','2022-04-07 15:38:23','',138,'https://the-collab.com/?p=350',0,'revision','',0),(351,1,'2022-04-07 15:38:23','2022-04-07 15:38:23','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:38:23','2022-04-07 15:38:23','',138,'https://the-collab.com/?p=351',0,'revision','',0),(352,1,'2022-04-07 15:38:23','2022-04-07 15:38:23','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:38:23','2022-04-07 15:38:23','',138,'https://the-collab.com/?p=352',0,'revision','',0),(353,1,'2022-04-07 15:40:59','2022-04-07 15:40:59','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:40:59','2022-04-07 15:40:59','',138,'https://the-collab.com/?p=353',0,'revision','',0),(354,1,'2022-04-07 15:40:59','2022-04-07 15:40:59','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:40:59','2022-04-07 15:40:59','',138,'https://the-collab.com/?p=354',0,'revision','',0),(355,1,'2022-04-07 15:40:59','2022-04-07 15:40:59','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:40:59','2022-04-07 15:40:59','',138,'https://the-collab.com/?p=355',0,'revision','',0),(503,1,'2022-04-08 21:27:41','2022-04-08 21:27:41','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:27:41','2022-04-08 21:27:41','',29,'https://the-collab.com/?p=503',0,'revision','',0),(362,1,'2022-04-07 15:42:15','2022-04-07 15:42:15','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 15:42:15','2022-04-07 15:42:15','',39,'https://the-collab.com/?p=362',0,'revision','',0),(360,1,'2022-04-07 15:42:15','2022-04-07 15:42:15','','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 15:42:15','2022-04-07 15:42:15','',39,'https://the-collab.com/?p=360',0,'revision','',0),(361,1,'2022-04-07 15:42:15','2022-04-07 15:42:15','','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 15:42:15','2022-04-07 15:42:15','',39,'https://the-collab.com/?p=361',0,'revision','',0),(363,1,'2022-04-07 15:44:27','2022-04-07 15:44:27','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:44:27','2022-04-07 15:44:27','',29,'https://the-collab.com/?p=363',0,'revision','',0),(364,1,'2022-04-07 15:44:27','2022-04-07 15:44:27','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h1 style=\"text-align: center;\">The Team</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ariel Axelrod, LMHC, NCC</h2>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h2>Yahu</h2>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h1 style=\"text-align: center;\">Training and Experience</h1><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:44:27','2022-04-07 15:44:27','',29,'https://the-collab.com/?p=364',0,'revision','',0),(365,1,'2022-04-07 15:44:27','2022-04-07 15:44:27','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:44:27','2022-04-07 15:44:27','',29,'https://the-collab.com/?p=365',0,'revision','',0),(366,1,'2022-04-07 15:44:53','2022-04-07 15:44:53','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:44:53','2022-04-07 15:44:53','',29,'https://the-collab.com/?p=366',0,'revision','',0),(367,1,'2022-04-07 15:44:53','2022-04-07 15:44:53','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:44:53','2022-04-07 15:44:53','',29,'https://the-collab.com/?p=367',0,'revision','',0),(368,1,'2022-04-07 15:44:53','2022-04-07 15:44:53','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:44:53','2022-04-07 15:44:53','',29,'https://the-collab.com/?p=368',0,'revision','',0),(369,1,'2022-04-07 15:45:12','2022-04-07 15:45:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:45:12','2022-04-07 15:45:12','',29,'https://the-collab.com/?p=369',0,'revision','',0),(370,1,'2022-04-07 15:45:12','2022-04-07 15:45:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:45:12','2022-04-07 15:45:12','',29,'https://the-collab.com/?p=370',0,'revision','',0),(371,1,'2022-04-07 15:45:12','2022-04-07 15:45:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:45:12','2022-04-07 15:45:12','',29,'https://the-collab.com/?p=371',0,'revision','',0),(372,1,'2022-04-07 15:50:53','2022-04-07 15:50:53','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:50:53','2022-04-07 15:50:53','',29,'https://the-collab.com/?p=372',0,'revision','',0),(373,1,'2022-04-07 15:50:53','2022-04-07 15:50:53','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:50:53','2022-04-07 15:50:53','',29,'https://the-collab.com/?p=373',0,'revision','',0),(374,1,'2022-04-07 15:50:53','2022-04-07 15:50:53','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-07 15:50:53','2022-04-07 15:50:53','',29,'https://the-collab.com/?p=374',0,'revision','',0),(375,1,'2022-04-07 15:52:08','2022-04-07 15:52:08','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:52:08','2022-04-07 15:52:08','',288,'https://the-collab.com/?p=375',0,'revision','',0),(376,1,'2022-04-07 15:52:08','2022-04-07 15:52:08','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:52:08','2022-04-07 15:52:08','',288,'https://the-collab.com/?p=376',0,'revision','',0),(377,1,'2022-04-07 15:52:08','2022-04-07 15:52:08','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-07 15:52:08','2022-04-07 15:52:08','',288,'https://the-collab.com/?p=377',0,'revision','',0),(378,1,'2022-04-07 15:52:58','2022-04-07 15:52:58','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:52:58','2022-04-07 15:52:58','',37,'https://the-collab.com/?p=378',0,'revision','',0),(379,1,'2022-04-07 15:52:58','2022-04-07 15:52:58','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Policies, FAQs, and Fees</h1>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:52:58','2022-04-07 15:52:58','',37,'https://the-collab.com/?p=379',0,'revision','',0),(380,1,'2022-04-07 15:52:59','2022-04-07 15:52:59','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-07 15:52:59','2022-04-07 15:52:59','',37,'https://the-collab.com/?p=380',0,'revision','',0),(381,1,'2022-04-07 15:53:51','2022-04-07 15:53:51','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:53:51','2022-04-07 15:53:51','',138,'https://the-collab.com/?p=381',0,'revision','',0),(382,1,'2022-04-07 15:53:52','2022-04-07 15:53:52','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:53:52','2022-04-07 15:53:52','',138,'https://the-collab.com/?p=382',0,'revision','',0),(383,1,'2022-04-07 15:53:52','2022-04-07 15:53:52','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 15:53:52','2022-04-07 15:53:52','',138,'https://the-collab.com/?p=383',0,'revision','',0),(384,1,'2022-04-07 15:54:31','2022-04-07 15:54:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 15:54:31','2022-04-07 15:54:31','',39,'https://the-collab.com/?p=384',0,'revision','',0),(385,1,'2022-04-07 15:54:31','2022-04-07 15:54:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>    Ariel Axelrod, LMHC</p>		\n		<h1 style=\"text-align: center;\">Contact Page and Directions</h1>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 15:54:31','2022-04-07 15:54:31','',39,'https://the-collab.com/?p=385',0,'revision','',0),(386,1,'2022-04-07 15:54:31','2022-04-07 15:54:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 15:54:31','2022-04-07 15:54:31','',39,'https://the-collab.com/?p=386',0,'revision','',0),(399,1,'2022-04-07 16:07:29','2022-04-07 16:07:29','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:07:29','2022-04-07 16:07:29','',138,'https://the-collab.com/?p=399',0,'revision','',0),(400,1,'2022-04-07 16:07:45','2022-04-07 16:07:45','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:07:45','2022-04-07 16:07:45','',138,'https://the-collab.com/?p=400',0,'revision','',0),(401,1,'2022-04-07 16:07:45','2022-04-07 16:07:45','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:07:45','2022-04-07 16:07:45','',138,'https://the-collab.com/?p=401',0,'revision','',0),(402,1,'2022-04-07 16:07:46','2022-04-07 16:07:46','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:07:46','2022-04-07 16:07:46','',138,'https://the-collab.com/?p=402',0,'revision','',0),(438,1,'2022-04-08 12:50:35','2022-04-08 12:50:35','','Elementor Single Page #437','','inherit','closed','closed','','437-revision-v1','','','2022-04-08 12:50:35','2022-04-08 12:50:35','',437,'https://the-collab.com/?p=438',0,'revision','',0),(439,1,'2022-04-08 12:55:20','2022-04-08 12:55:20','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 12:55:20','2022-04-08 12:55:20','',29,'https://the-collab.com/?p=439',0,'revision','',0),(409,1,'2022-04-07 16:08:48','2022-04-07 16:08:48','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 16:08:48','2022-04-07 16:08:48','',39,'https://the-collab.com/?p=409',0,'revision','',0),(407,1,'2022-04-07 16:08:48','2022-04-07 16:08:48','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 16:08:48','2022-04-07 16:08:48','',39,'https://the-collab.com/?p=407',0,'revision','',0),(408,1,'2022-04-07 16:08:48','2022-04-07 16:08:48','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-07 16:08:48','2022-04-07 16:08:48','',39,'https://the-collab.com/?p=408',0,'revision','',0),(414,1,'2022-04-07 16:43:13','2022-04-07 16:43:13','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:43:13','2022-04-07 16:43:13','',138,'https://the-collab.com/?p=414',0,'revision','',0),(415,1,'2022-04-07 16:43:13','2022-04-07 16:43:13','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:43:13','2022-04-07 16:43:13','',138,'https://the-collab.com/?p=415',0,'revision','',0),(424,1,'2022-04-07 16:54:40','2022-04-07 16:54:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:54:40','2022-04-07 16:54:40','',138,'https://the-collab.com/?p=424',0,'revision','',0),(420,1,'2022-04-07 16:50:12','2022-04-07 16:50:12','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p><p>A: Apocrypha, commentary and occasional thoughts on the state of the field, et&amp;c. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:50:12','2022-04-07 16:50:12','',138,'https://the-collab.com/?p=420',0,'revision','',0),(422,1,'2022-04-07 16:54:40','2022-04-07 16:54:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p><p>A: Apocrypha, commentary and occasional thoughts on the state of the field, et&amp;c. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:54:40','2022-04-07 16:54:40','',138,'https://the-collab.com/?p=422',0,'revision','',0),(423,1,'2022-04-07 16:54:40','2022-04-07 16:54:40','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p><p>A: Apocrypha, commentary and occasional thoughts on the state of the field, et&amp;c. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 16:54:40','2022-04-07 16:54:40','',138,'https://the-collab.com/?p=423',0,'revision','',0),(425,1,'2022-04-07 17:00:50','2022-04-07 17:00:50','<!-- wp:heading -->\n<h2>Test</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p>This is a test post.</p>\n<!-- /wp:paragraph -->','','','trash','closed','','','425__trashed','','','2022-04-07 17:10:23','2022-04-07 17:10:23','',0,'https://the-collab.com/?p=425',0,'post','',0),(426,1,'2022-04-07 17:07:05','2022-04-07 17:07:05','<!-- wp:heading -->\n<h2>Test</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is a test post.</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','425-revision-v1','','','2022-04-07 17:07:05','2022-04-07 17:07:05','',425,'https://the-collab.com/?p=426',0,'revision','',0),(427,1,'2022-04-07 17:07:05','2022-04-07 17:07:05','<!-- wp:heading -->\n<h2>Test</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is a test post.</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','425-revision-v1','','','2022-04-07 17:07:05','2022-04-07 17:07:05','',425,'https://the-collab.com/?p=427',0,'revision','',0),(428,1,'2022-04-07 17:07:05','2022-04-07 17:07:05','<!-- wp:heading -->\n<h2>Test</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p>This is a test post.</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','425-revision-v1','','','2022-04-07 17:07:05','2022-04-07 17:07:05','',425,'https://the-collab.com/?p=428',0,'revision','',0),(432,1,'2022-04-07 17:15:35','2022-04-07 17:15:35','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 17:15:35','2022-04-07 17:15:35','',138,'https://the-collab.com/?p=432',0,'revision','',0),(430,1,'2022-04-07 17:15:34','2022-04-07 17:15:34','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 17:15:34','2022-04-07 17:15:34','',138,'https://the-collab.com/?p=430',0,'revision','',0),(431,1,'2022-04-07 17:15:34','2022-04-07 17:15:34','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 17:15:34','2022-04-07 17:15:34','',138,'https://the-collab.com/?p=431',0,'revision','',0),(433,1,'2022-04-07 17:19:24','2022-04-07 17:19:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 17:19:24','2022-04-07 17:19:24','',138,'https://the-collab.com/?p=433',0,'revision','',0),(434,1,'2022-04-07 17:19:24','2022-04-07 17:19:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 17:19:24','2022-04-07 17:19:24','',138,'https://the-collab.com/?p=434',0,'revision','',0),(435,1,'2022-04-07 17:19:24','2022-04-07 17:19:24','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-07 17:19:24','2022-04-07 17:19:24','',138,'https://the-collab.com/?p=435',0,'revision','',0),(437,1,'2022-04-08 12:50:35','0000-00-00 00:00:00','','Elementor Single Page #437','','draft','closed','closed','','','','','2022-04-08 12:50:35','2022-04-08 12:50:35','',0,'https://the-collab.com/?post_type=elementor_library&#038;p=437',0,'elementor_library','',0),(440,1,'2022-04-08 12:55:21','2022-04-08 12:55:21','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p style=\"line-height: 1.875em; font-size: 15px;\">Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.<br /></p><p style=\"line-height: 1.875em; font-size: 15px;\"> </p><p style=\"line-height: 1.875em; font-size: 15px;\">Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 12:55:21','2022-04-08 12:55:21','',29,'https://the-collab.com/?p=440',0,'revision','',0),(457,1,'2022-04-08 20:26:35','2022-04-08 20:26:35','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-08 20:26:35','2022-04-08 20:26:35','',288,'https://the-collab.com/?p=457',0,'revision','',0),(454,1,'2022-04-08 20:26:31','2022-04-08 20:26:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 20:26:31','2022-04-08 20:26:31','',37,'https://the-collab.com/?p=454',0,'revision','',0),(451,1,'2022-04-08 20:26:29','2022-04-08 20:26:29','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-08 20:26:29','2022-04-08 20:26:29','',138,'https://the-collab.com/?p=451',0,'revision','',0),(448,1,'2022-04-08 20:26:26','2022-04-08 20:26:26','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 20:26:26','2022-04-08 20:26:26','',39,'https://the-collab.com/?p=448',0,'revision','',0),(446,1,'2022-04-08 20:26:25','2022-04-08 20:26:26','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 20:26:25','2022-04-08 20:26:26','',39,'https://the-collab.com/?p=446',0,'revision','',0),(447,1,'2022-04-08 20:26:26','2022-04-08 20:26:26','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 20:26:26','2022-04-08 20:26:26','',39,'https://the-collab.com/?p=447',0,'revision','',0),(449,1,'2022-04-08 20:26:29','2022-04-08 20:26:29','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-08 20:26:29','2022-04-08 20:26:29','',138,'https://the-collab.com/?p=449',0,'revision','',0),(450,1,'2022-04-08 20:26:29','2022-04-08 20:26:29','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-08 20:26:29','2022-04-08 20:26:29','',138,'https://the-collab.com/?p=450',0,'revision','',0),(452,1,'2022-04-08 20:26:31','2022-04-08 20:26:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 20:26:31','2022-04-08 20:26:31','',37,'https://the-collab.com/?p=452',0,'revision','',0),(453,1,'2022-04-08 20:26:31','2022-04-08 20:26:31','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 20:26:31','2022-04-08 20:26:31','',37,'https://the-collab.com/?p=453',0,'revision','',0),(455,1,'2022-04-08 20:26:35','2022-04-08 20:26:35','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-08 20:26:35','2022-04-08 20:26:35','',288,'https://the-collab.com/?p=455',0,'revision','',0),(456,1,'2022-04-08 20:26:35','2022-04-08 20:26:35','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-08 20:26:35','2022-04-08 20:26:35','',288,'https://the-collab.com/?p=456',0,'revision','',0),(458,1,'2022-04-08 20:29:38','2022-04-08 20:29:38','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:29:38','2022-04-08 20:29:38','',23,'https://the-collab.com/?p=458',0,'revision','',0),(459,1,'2022-04-08 20:30:19','2022-04-08 20:30:19','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:30:19','2022-04-08 20:30:19','',23,'https://the-collab.com/?p=459',0,'revision','',0),(460,1,'2022-04-08 20:32:40','2022-04-08 20:32:40','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:32:40','2022-04-08 20:32:40','',23,'https://the-collab.com/?p=460',0,'revision','',0),(461,1,'2022-04-08 20:32:55','2022-04-08 20:32:55','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:32:55','2022-04-08 20:32:55','',23,'https://the-collab.com/?p=461',0,'revision','',0),(462,1,'2022-04-08 20:33:24','2022-04-08 20:33:24','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:33:24','2022-04-08 20:33:24','',23,'https://the-collab.com/?p=462',0,'revision','',0),(463,1,'2022-04-08 20:34:46','2022-04-08 20:34:46','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:34:46','2022-04-08 20:34:46','',23,'https://the-collab.com/?p=463',0,'revision','',0),(469,1,'2022-04-08 20:37:18','2022-04-08 20:37:18','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 20:37:18','2022-04-08 20:37:18','',29,'https://the-collab.com/?p=469',0,'revision','',0),(465,1,'2022-04-08 20:36:57','2022-04-08 20:36:57','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:36:57','2022-04-08 20:36:57','',23,'https://the-collab.com/?p=465',0,'revision','',0),(466,1,'2022-04-08 20:37:05','2022-04-08 20:37:05','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:37:05','2022-04-08 20:37:05','',23,'https://the-collab.com/?p=466',0,'revision','',0),(467,1,'2022-04-08 20:37:18','2022-04-08 20:37:18','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 20:37:18','2022-04-08 20:37:18','',29,'https://the-collab.com/?p=467',0,'revision','',0),(468,1,'2022-04-08 20:37:18','2022-04-08 20:37:18','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 20:37:18','2022-04-08 20:37:18','',29,'https://the-collab.com/?p=468',0,'revision','',0),(470,1,'2022-04-08 20:37:41','2022-04-08 20:37:41','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:37:41','2022-04-08 20:37:41','',23,'https://the-collab.com/?p=470',0,'revision','',0),(471,1,'2022-04-08 20:40:22','2022-04-08 20:40:22','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 20:40:22','2022-04-08 20:40:22','',29,'https://the-collab.com/?p=471',0,'revision','',0),(472,1,'2022-04-08 20:40:23','2022-04-08 20:40:23','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 20:40:23','2022-04-08 20:40:23','',29,'https://the-collab.com/?p=472',0,'revision','',0),(473,1,'2022-04-08 20:40:23','2022-04-08 20:40:23','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 20:40:23','2022-04-08 20:40:23','',29,'https://the-collab.com/?p=473',0,'revision','',0),(474,1,'2022-04-08 20:43:18','2022-04-08 20:43:18','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:43:18','2022-04-08 20:43:18','',23,'https://the-collab.com/?p=474',0,'revision','',0),(479,1,'2022-04-08 21:15:57','2022-04-08 21:15:57','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:15:57','2022-04-08 21:15:57','',29,'https://the-collab.com/?p=479',0,'revision','',0),(476,1,'2022-04-08 20:44:42','2022-04-08 20:44:42','','Default Kit','','inherit','closed','closed','','23-revision-v1','','','2022-04-08 20:44:42','2022-04-08 20:44:42','',23,'https://the-collab.com/?p=476',0,'revision','',0),(477,1,'2022-04-08 21:15:56','2022-04-08 21:15:56','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:15:56','2022-04-08 21:15:56','',29,'https://the-collab.com/?p=477',0,'revision','',0),(478,1,'2022-04-08 21:15:56','2022-04-08 21:15:56','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear-cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p><p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p><h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n		<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:15:56','2022-04-08 21:15:56','',29,'https://the-collab.com/?p=478',0,'revision','',0),(480,1,'2022-04-08 21:18:33','2022-04-08 21:18:33','','nav','','publish','closed','closed','','nav','','','2022-04-08 21:18:33','2022-04-08 21:18:33','',0,'https://the-collab.com/?elementor_library=nav',0,'elementor_library','',0),(481,1,'2022-04-08 21:18:33','2022-04-08 21:18:33','','nav','','inherit','closed','closed','','480-revision-v1','','','2022-04-08 21:18:33','2022-04-08 21:18:33','',480,'https://the-collab.com/?p=481',0,'revision','',0),(482,1,'2022-04-08 21:18:33','2022-04-08 21:18:33','','nav','','inherit','closed','closed','','480-revision-v1','','','2022-04-08 21:18:33','2022-04-08 21:18:33','',480,'https://the-collab.com/?p=482',0,'revision','',0),(486,1,'2022-04-08 21:19:22','2022-04-08 21:19:22','<h2>    Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6><h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 21:19:22','2022-04-08 21:19:22','',39,'https://the-collab.com/?p=486',0,'revision','',0),(484,1,'2022-04-08 21:19:21','2022-04-08 21:19:21','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 21:19:21','2022-04-08 21:19:21','',39,'https://the-collab.com/?p=484',0,'revision','',0),(485,1,'2022-04-08 21:19:22','2022-04-08 21:19:22','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 21:19:22','2022-04-08 21:19:22','',39,'https://the-collab.com/?p=485',0,'revision','',0),(494,1,'2022-04-08 21:22:20','2022-04-08 21:22:20','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:22:20','2022-04-08 21:22:20','',29,'https://the-collab.com/?p=494',0,'revision','',0),(488,1,'2022-04-08 21:20:55','2022-04-08 21:20:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>','pebble bar','','publish','closed','closed','','pebble-bar','','','2022-04-08 21:20:55','2022-04-08 21:20:55','',0,'https://the-collab.com/?elementor_library=pebble-bar',0,'elementor_library','',0),(489,1,'2022-04-08 21:20:55','2022-04-08 21:20:55','','pebble bar','','inherit','closed','closed','','488-revision-v1','','','2022-04-08 21:20:55','2022-04-08 21:20:55','',488,'https://the-collab.com/?p=489',0,'revision','',0),(490,1,'2022-04-08 21:20:55','2022-04-08 21:20:55','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>','pebble bar','','inherit','closed','closed','','488-revision-v1','','','2022-04-08 21:20:55','2022-04-08 21:20:55','',488,'https://the-collab.com/?p=490',0,'revision','',0),(492,1,'2022-04-08 21:22:19','2022-04-08 21:22:19','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:22:19','2022-04-08 21:22:19','',29,'https://the-collab.com/?p=492',0,'revision','',0),(493,1,'2022-04-08 21:22:19','2022-04-08 21:22:19','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:22:19','2022-04-08 21:22:19','',29,'https://the-collab.com/?p=493',0,'revision','',0),(495,1,'2022-04-08 21:25:42','2022-04-08 21:25:42','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','yellow home','','publish','closed','closed','','yellow-home','','','2022-04-08 21:25:42','2022-04-08 21:25:42','',0,'https://the-collab.com/?elementor_library=yellow-home',0,'elementor_library','',0),(496,1,'2022-04-08 21:25:42','2022-04-08 21:25:42','','yellow home','','inherit','closed','closed','','495-revision-v1','','','2022-04-08 21:25:42','2022-04-08 21:25:42','',495,'https://the-collab.com/?p=496',0,'revision','',0),(497,1,'2022-04-08 21:25:42','2022-04-08 21:25:42','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','yellow home','','inherit','closed','closed','','495-revision-v1','','','2022-04-08 21:25:42','2022-04-08 21:25:42','',495,'https://the-collab.com/?p=497',0,'revision','',0),(504,1,'2022-04-08 21:27:41','2022-04-08 21:27:41','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:27:41','2022-04-08 21:27:41','',29,'https://the-collab.com/?p=504',0,'revision','',0),(505,1,'2022-04-08 21:28:06','2022-04-08 21:28:06','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:28:06','2022-04-08 21:28:06','',29,'https://the-collab.com/?p=505',0,'revision','',0),(506,1,'2022-04-08 21:28:06','2022-04-08 21:28:06','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:28:06','2022-04-08 21:28:06','',29,'https://the-collab.com/?p=506',0,'revision','',0),(507,1,'2022-04-08 21:28:06','2022-04-08 21:28:06','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">About the Practice</h2><p>Sometimes the problems that lead us to seek therapy are not as clear cut as what sends us to a medical specialist. If you are struggling with your relationship with yourself, others, or the world around you, I can help you achieve your goals.</p>\n<p>Compassion and openmindedness comprise the foundation of all therapeutic work. My practice is open to people of all nationalities, ethnicities, genders, and orientations, and I welcome you to reach out if you have any questions.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">The Team</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Ariel-Axelrod-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Ariel Axelrod, LMHC, NCC</h3>		\n		<p>Ariel graduated Wellesley College with a BA in Russian Area Studies and proceeded to embark on a 10-year career in marketing and publishing. She returned to school for her MA in counseling and behavioral medicine and now leverages her experience managing and teaching writers, editors, and students to help her present clients find ways to revise life narratives.</p><p> </p><p> </p>		\n															<img width=\"220\" height=\"220\" src=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp\" alt=\"Yahu\" loading=\"lazy\" srcset=\"https://the-collab.com/wp-content/uploads/2022/02/Office-Cat.webp 220w, https://the-collab.com/wp-content/uploads/2022/02/Office-Cat-150x150.webp 150w\" sizes=\"(max-width: 220px) 100vw, 220px\" />															\n			<h3>Yahu</h3>		\n		<p>Yahu is an occasional guest on telehealth sessions. He brings to the practice over a decade\'s worth of expertise in cat naps, artistic kibble displays, and healthy eating (especially house plants).</p><p> </p><p> </p><p> </p><p> </p>		\n		<h2 style=\"text-align: center;\">Training and Experience</h2><strong>Professional Licenses and Certifications</strong>\n<ul>\n 	<li>Licensed mental health counselor (LMHC), <br>licensed in Massachusetts, licensed no. 11882</br></li>\n 	<li>National certified counselor (NCC), <br>certified by NBCC, cert no. 944326.</br></li>\n</ul>\n<strong>Education</strong>\n<ul>\n 	<li>MA in Clinical Mental Health Counseling and <br>concentration in Health and Behavioral Medicine, William James College</br></li>\n 	<li>BA in Russian Area Studies, Wellesley College</li>\n</ul>\n<strong>Clinical Training</strong>\n<ul>\n 	<li>Masters Internship: CBFS Team, Edinburg Center, Lexington, MA</li>\n 	<li>Masters Practicum: Waverley Place, McLean Hospital, Belmont, MA</li>\n 	<li>Supervised Mediation Placement: Newton District Court, Newton, MA</li>\n</ul>\n<strong>Professional Associations</strong>\n<ul>\n 	<li>Massachusetts Mental Health Counselors Association</li>\n</ul>\n<h6>Copyright 2022. All rights reserved.</h6>','Home','','inherit','closed','closed','','29-revision-v1','','','2022-04-08 21:28:06','2022-04-08 21:28:06','',29,'https://the-collab.com/?p=507',0,'revision','',0),(511,1,'2022-04-08 21:40:20','2022-04-08 21:40:20','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk oversimplification when we classify all technological struggle as addiction, and yet interactive interfaces are designed to hold attention for purposes not altogether germane to wellbeing. If this is an area of concern, we can build and test strategies for resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of <em>us</em>. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (a tool that can help us find our way again). This particular loss sometimes goes unnoticed in formal descriptions of health and wellbeing, but it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from school. Entering the workplace. Transitioning into a new career. Giving birth or adopting. Acclimating to life after an injury. Taking on new roles, or shedding old ones. Consider the time and energy needed to adjust to changes in self-identity. Therapy is a place to give life transitions the attention and respect they require. </p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-08 21:40:20','2022-04-08 21:40:20','',288,'https://the-collab.com/?p=511',0,'revision','',0),(516,1,'2022-04-08 21:45:46','2022-04-08 21:45:46','<h2>Ariel Axelrod, LMHC</h2><h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 21:45:46','2022-04-08 21:45:46','',37,'https://the-collab.com/?p=516',0,'revision','',0),(509,1,'2022-04-08 21:40:19','2022-04-08 21:40:19','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-08 21:40:19','2022-04-08 21:40:19','',288,'https://the-collab.com/?p=509',0,'revision','',0),(510,1,'2022-04-08 21:40:19','2022-04-08 21:40:19','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Specialties</h2><p><strong>Executive Function</strong></p><p>Procrastination. Disorganization. Always walking a tightrope of trying to use innate spontaneity without falling into impulsivity. Therapy can be an opportunity to rewrite the narrative and build skills to address obstacles and make the most of strengths.</p><p><b>Issues with Technology</b></p><p>We risk an error of oversimplification when we classify all technological struggle as addiction—as current diagnostic manuels are wont to do. Interactive interfaces are often designed to hold attention or wear down personal boundaries for purposes not necessarily germane to one’s purposes for interaction. If this is an area of concern, we can build and test strategies to create greater resilience.</p><p><strong>Relationship Conflicts</strong></p><p>We are social creatures, and each individual’s health and well-being exists within the matrix of familial and social relationships. When those relationships are difficult, conflicted, or stressful, the brain experiences that sense of separation as pain.</p>		\n		<p><strong>Creativity and Mastery</strong></p><p>Creativity and mastery (of craft, of a sport, of a language, of self) affirm our ability to build things in the world that are undeniably of us. When we lose that, it can feel permanent (it doesn\'t have to be), and it can inspire fear (fear is a tool that can help us find our way again). This particular loss sometimes goes unnoticed in our big books of diagnoses and treatment. But I believe it deserves recognition and redress.</p><p><strong>Body Image and Self-Esteem</strong></p><p>How we see ourselves—physically and mentally—is strongly affected by external factors and can in turn influence what grabs our attention in daily life. It can be helpful to identify external influences on self-image in the here-and-now and from the lessons learned growing up in order to understand the interplay between body image, self-esteem, and lived experience.</p><p><strong>Life Transitions</strong></p><p>Graduating from college and entering the workplace. Transitioning out of a professional athletic career. Giving birth or adopting a child. Acclimating to life after an injury. Taking on a new role in the workplace. We sometimes don\'t recognize the time and energy needed to adjust to changes in self-identity. Therapy is a place where we can give life transitions the attention and respect they require. When we do so, they can reward us with wisdom and the chance to turn loss into growth and positive change.</p><p><strong>Anxiety and Stress Management</strong></p><p>Anxiety is a near-universal experience, as its physiological components make up part of a system that helps the human body react appropriately to acute stressors. Yet, today’s stressors are often a mixture of acute and chronic, leading to confusing and alarming anxiety symptoms that can feel scary and out of place.</p><p><strong>Depression</strong></p><p>Everyone feels a bit down sometimes, but when that sometimes stretches toward the horizon or you find it more and more difficult to find pleasure in activities that used to bring joy, you may be experiencing depression rather than a typical bout of sadness.</p><p><strong>Grief and Loss</strong></p><p>Loss takes many forms, and it\'s not unusual to feel mired in one\'s grief or experience a conflict between the need to mourn and the desire to rejoin the world temporarily exited when a painful loss happens.</p>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Specialties','','inherit','closed','closed','','288-revision-v1','','','2022-04-08 21:40:19','2022-04-08 21:40:19','',288,'https://the-collab.com/?p=510',0,'revision','',0),(515,1,'2022-04-08 21:45:31','2022-04-08 21:45:31','<h2>Ariel Axelrod, LMHC</h2><h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 21:45:31','2022-04-08 21:45:31','',37,'https://the-collab.com/?p=515',0,'revision','',0),(513,1,'2022-04-08 21:45:30','2022-04-08 21:45:30','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 21:45:30','2022-04-08 21:45:30','',37,'https://the-collab.com/?p=513',0,'revision','',0),(514,1,'2022-04-08 21:45:30','2022-04-08 21:45:30','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 21:45:30','2022-04-08 21:45:30','',37,'https://the-collab.com/?p=514',0,'revision','',0),(517,1,'2022-04-08 21:45:46','2022-04-08 21:45:46','<h2>Ariel Axelrod, LMHC</h2><h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 21:45:46','2022-04-08 21:45:46','',37,'https://the-collab.com/?p=517',0,'revision','',0),(518,1,'2022-04-08 21:45:46','2022-04-08 21:45:46','<h2>Ariel Axelrod, LMHC</h2><h2 style=\"text-align: center;\">Policies, FAQs, and Fees</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d4d4d4;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d4d4d4;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}</style>		\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your approach to therapy?</a>\n					<p>Therapy is a collaborative effort you and I engage in together with the purpose of helping you make changes in your life. It can be difficult to identify what changes are called for at the start of therapy. For that reason, much of our initial work together will be about leveraging your emotions and day-to-day experience to gain a greater understanding of what makes you tick.</p><p>I employ a variety of modalities, drawing from traditions such as CBT, psychodynamic, family, expressive arts, and movement. If you wish to view an exhaustive list of modalities in which I have trained, that may be viewed on my CV here.</p><p>Therapy often leads to benefits that allow you to make positive change in your life, which may include greater self-awareness, more adaptive coping skills, and a general sense of well being.</p><p>The process of therapy takes a certain amount of courage and commitment, but the journey can renew our sense of purpose and direction in the world. I am of course biased, but I think it well worth the effort.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">The duration of therapy</a>\n					Clients often ask how long they will be in therapy to achieve their goals. It is difficult to answer this question with any great accuracy, since the length of treatment depends on your individual needs and concerns. Sometimes only a few sessions are needed for a very specific concern you may have. More time may be needed for work with complicated concerns with long-term goals.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">How are you handling Covid-19?</a>\n					<p>As of April 2022, I am slowly opening my office back up for in-person appointments on certain days. I will continue to offer telehealth via a HIPAA-compliant platform.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What age groups do you work with?</a>\n					<p>I work with adults 18 years of age and older.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Do you prescribe medication?</a>\n					I do not prescribe medication. However, medication is often a helpful addition to treatment, and I am happy to provide referrals or collaborate with your prescriber.\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">What is your fee structure?</a>\n					<p><em>Psychotherapy Fees</em></p><ul><li>Initial phone consult: free</li><li>Psychotherapy intake: $220</li><li>Psychotherapy, 50-minute session: $150</li><li>Psychotherapy, 30-minute session: $80</li></ul><p> </p><p><em>Administrative Fees</em></p><ul><li>Collateral contact and other non-insurance paperwork or material preparation: 0-15 minutes: no charge; subsequent 30-minute increments: $80</li></ul><p>I accept cash and credit/debit card. For telehealth appointments, I am only able to accept credit/debit card. All card payments are processed via <a href=\"https://axelrod.clientsecure.me/\" target=\"_blank\" rel=\"noreferrer noopener\">Simple Practice</a>.</p>\n															<svg><use xlink:href=\"#fas-chevron-right\" /></svg>\n								<svg><use xlink:href=\"#fas-chevron-down\" /></svg>\n												<a href=\"\">Where can I view your privacy policy and patient bill of rights?</a>\n					<p>My Notice of Privacy Practices is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Notice-of-Privacy-Practices.pdf\">here</a> and my Patient Bill of Rights is available <a href=\"https://the-collab.com/wp-content/uploads/2022/04/Patient-Bill-of-Rights-and-Patient-Responsibilities.pdf\">here</a>.</p>\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Policies, FAQs, and Fees','','inherit','closed','closed','','37-revision-v1','','','2022-04-08 21:45:46','2022-04-08 21:45:46','',37,'https://the-collab.com/?p=518',0,'revision','',0),(522,1,'2022-04-08 21:59:09','2022-04-08 21:59:09','<h2>Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><em>Margin notes: A blog comprising commentary on the state of the art and the ecology of mental healthcare provision. Not medical advice, nor intended to replace it or mimick it in any way.</em></p><h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-08 21:59:09','2022-04-08 21:59:09','',138,'https://the-collab.com/?p=522',0,'revision','',0),(520,1,'2022-04-08 21:59:09','2022-04-08 21:59:09','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-08 21:59:09','2022-04-08 21:59:09','',138,'https://the-collab.com/?p=520',0,'revision','',0),(521,1,'2022-04-08 21:59:09','2022-04-08 21:59:09','<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2>    Ariel Axelrod, LMHC</h2>		\n		<p>Q: What are margin notes?</p>\n<p>A: Apocrypha and commentary on the state of the field. Not to be taken as gospel or directed advice.</p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Margin Notes</h2>		\n		<h6>Copyright 2022. All rights reserved.</h6>','Margin Notes','','inherit','closed','closed','','138-revision-v1','','','2022-04-08 21:59:09','2022-04-08 21:59:09','',138,'https://the-collab.com/?p=521',0,'revision','',0),(525,1,'2022-04-08 22:04:05','2022-04-08 22:04:05','<h2>    Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2><p>You can use the form to contact me to learn more and book a consultation.</p><p><strong>Office Address</strong><br />The Therapy Center for Mind and Body<br />1234 Broadway<br />Somerville, MA</p><p>My office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.</p><p><strong><u>Transportation</u></strong></p><p><strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.</p><p><strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.</p><p><strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center.</p><p><em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em></p>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 22:04:05','2022-04-08 22:04:05','',39,'https://the-collab.com/?p=525',0,'revision','',0),(523,1,'2022-04-08 22:04:05','2022-04-08 22:04:05','<h2>    Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6><h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 22:04:05','2022-04-08 22:04:05','',39,'https://the-collab.com/?p=523',0,'revision','',0),(524,1,'2022-04-08 22:04:05','2022-04-08 22:04:05','<h2>    Ariel Axelrod, LMHC</h2>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<style>/*! elementor - v3.6.2 - 04-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6><h2>    Ariel Axelrod, LMHC</h2>		\n		<h2 style=\"text-align: center;\">Contact Page and Directions</h2>You can use the form to contact me to learn more and book a consultation.\n<p></p>\n<strong>Office Address</strong></br>\n1234 Broadway </br>\nSomerville, MA </br>\n<p></p>\nMy office is located in a second-story walk-up near Teele Square. It is convenient to Arlington, Belmont, Cambridge, and Medford.\n<p></p>\n<strong><u>Transportation</u></strong><p></p>\n<strong>Car:</strong> The nearest major roads are Rt. 16, Rt. 2, and Mass Ave. There is plenty of free and metered 2-hour on-street parking.<p></p>\n<strong>Bicycle:</strong> The Center is 1 mile from the Minuteman Commuter Bike Path; there are bicycle racks on the sidewalk along Broadway; and during the summer, there is Blue Bike rack situated at the corner of Broadway and Rt. 16.<p></p>\n<strong>Public transportation:</strong> The Center is 0.7 miles from the Davis Square Red Line stop. Bus lines 87, 88, 89, and 89/93 have stops within 3 blocks of the Center. <p></p></br>\n<em>Please note: Initiating contact does not constitute a contract for treatment. If you need immediate treatment or you are having an emergency, call 911 or go to the nearest emergency room.</em>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=1234%20Broadway%20Somerville%2C%20MA&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"1234 Broadway Somerville, MA\"\n					aria-label=\"1234 Broadway Somerville, MA\"\n			></iframe>\n		<h6>Copyright 2022. All rights reserved.</h6>','Contact','','inherit','closed','closed','','39-revision-v1','','','2022-04-08 22:04:05','2022-04-08 22:04:05','',39,'https://the-collab.com/?p=524',0,'revision','',0);
/*!40000 ALTER TABLE `wpob_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_posts` with 378 row(s)
--

--
-- Table structure for table `wpob_koko_analytics_referrer_stats`
--

DROP TABLE IF EXISTS `wpob_koko_analytics_referrer_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_koko_analytics_referrer_stats` (
  `date` date NOT NULL,
  `id` mediumint(8) unsigned NOT NULL,
  `visitors` mediumint(8) unsigned NOT NULL,
  `pageviews` mediumint(8) unsigned NOT NULL,
  PRIMARY KEY (`date`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=ascii;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_koko_analytics_referrer_stats`
--

LOCK TABLES `wpob_koko_analytics_referrer_stats` WRITE;
/*!40000 ALTER TABLE `wpob_koko_analytics_referrer_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_koko_analytics_referrer_stats` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_koko_analytics_referrer_stats` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_webhooks`
--

DROP TABLE IF EXISTS `wpob_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_webhooks`
--

LOCK TABLES `wpob_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wpob_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpob_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_webhooks` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_groups`
--

LOCK TABLES `wpob_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpob_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates'),(3,'wc-admin-data'),(4,'woocommerce_payments');
/*!40000 ALTER TABLE `wpob_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_groups` with 4 row(s)
--

--
-- Table structure for table `wpob_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wpob_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_label` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `log` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_e_submissions_actions_log`
--

LOCK TABLES `wpob_e_submissions_actions_log` WRITE;
/*!40000 ALTER TABLE `wpob_e_submissions_actions_log` DISABLE KEYS */;
INSERT INTO `wpob_e_submissions_actions_log` VALUES (1,1,'email','Email','success',NULL,'2022-04-07 15:57:00','2022-04-07 15:57:00','2022-04-07 15:57:00','2022-04-07 15:57:00'),(2,2,'email','Email','success',NULL,'2022-04-10 10:11:45','2022-04-10 10:11:45','2022-04-10 10:11:45','2022-04-10 10:11:45'),(3,3,'email','Email','success',NULL,'2022-04-15 08:31:06','2022-04-15 08:31:06','2022-04-15 08:31:06','2022-04-15 08:31:06');
/*!40000 ALTER TABLE `wpob_e_submissions_actions_log` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_e_submissions_actions_log` with 3 row(s)
--

/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on: Fri, 15 Apr 2022 15:59:09 +0000
